摘要: protected override void WndProc(ref Message m){ if (m.Msg==0x112) { switch ((int) m.WParam) { //禁止双击标题栏关闭窗体 case 0xF063: case 0xF093: m.WParam = IntPtr.Zero; break; //禁止拖拽标题栏还原窗体 case... 阅读全文
posted @ 2013-07-09 12:00 Rising_Sun 阅读(11531) 评论(0) 推荐(2) 编辑
摘要: 最近在上网的时候,发现了这个C# 下的 OutlookBar 控件,看了一下感觉还真不错,特此记录一下。using System;using System.Drawing;using System.Windows.Forms;namespace OutLookBarDemo{ internal class BandTagInfo { public OutlookBar outlookBar; public int index; public BandTagInfo(OutlookBar ob, int index) { ... 阅读全文
posted @ 2013-07-09 10:12 Rising_Sun 阅读(8376) 评论(5) 推荐(0) 编辑