星期六

2006年6月29日

使最小化窗体的窗体在还原时执行messagebox.show("已还原")

摘要: Private Sub Form1_Resize()Sub Form1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Resize Static isFirstLoad = True If isFirstLoad = False And WindowState... 阅读全文

posted @ 2006-06-29 16:43 星期六 阅读(276) 评论(0) 推荐(0) 编辑
禁止用户拖动窗体

摘要: class f:System.Windows.Forms.Form{ protected override void WndProc(ref System.Windows.Forms.Message m) { base.WndProc(ref m);//基类执行 if(m.Msg == 132)//鼠标的移动消息(包括非窗口的移动) { ... 阅读全文

posted @ 2006-06-29 13:44 星期六 阅读(562) 评论(0) 推荐(0) 编辑