2012年10月8日
摘要: 去掉form的窗体的边框后无法拖动窗体,下面简单的代码即可实现;如何去掉边框详见:http://www.cnblogs.com/lgx040605112/archive/2012/10/08/2715438.html 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Text; 7 using System.Windows.Forms; 8 9 namespa. 阅读全文
posted @ 2012-10-08 16:34 IT宅男007 阅读(285) 评论(0) 推荐(0) 编辑
摘要: winform窗体去掉标题、ICO、最大化、最小化、关闭有两种方式:1、设置form的FormBorderStyle属性为None;2、设置form的ControlBox为False,设置Text为空; 阅读全文
posted @ 2012-10-08 16:26 IT宅男007 阅读(3988) 评论(1) 推荐(0) 编辑