摘要:protected override void WndProc(ref Message m){ if (m.Msg==0x112) { switch ((int) m.WParam) { //禁止双击标题栏关闭窗体 case 0xF063: case 0xF093: m.WParam = IntPt
阅读全文
摘要:/******************************************************************* Copyright (C): 一心堂集团* CLR版本: 4.0.30319.18063* 命名空间名称: WcfService1* 文件名: IJoonServ...
阅读全文
摘要:1、第一步创建wcf服务的方法using System;using System.Collections.Generic;using System.Linq;using System.Runtime.Serialization;using System.ServiceModel;using Syst...
阅读全文
摘要:最近做了一个用.NET里的GZipStream压缩解压缩gzip文件的小程序。GZipStream在System.IO.Compression底下,使用起来也很简单。虽然GZipStream是Stream类的一个下级类,但它只相当于一个转换器。在两个Stream之间将数据转换成为压缩或解压缩数据。下...
阅读全文