
WindowMobile
lsingle
这个人比较懒,什么也没留下
展开
-
获取消息队列的Form
public class ExtForm: Form,OpenNETCF.Windows.Forms.IMessageFilter{ //internal MessageForm MsgForm; public ExtForm() { //this.MsgForm = new MessageForm(this); }原创 2008-09-23 15:38:00 · 472 阅读 · 0 评论 -
自定义消息对话框基于Dialog
#region 消息对话框 public class MessageBoxEx : ExtForm { public static Form _ownner; private bool bOwnnerTopMost = false; private Image btnImage = null; private string _ca原创 2008-09-23 15:34:00 · 569 阅读 · 0 评论 -
自定义消息对话框基于Panel
直接修改的基于Dialog的消息对话框#region 消息面板 public class MessagePanel : Panel { private Image btnImage = null; private string _caption = ""; private string _text = "";原创 2008-09-23 15:36:00 · 469 阅读 · 0 评论 -
滑屏切换Panel
1.重载Window消息internal override bool WndProc(ref Microsoft.WindowsCE.Forms.Message msg) { switch (msg.Msg) { case API.WM_LBUTTONDOWN:原创 2008-09-23 15:43:00 · 793 阅读 · 0 评论