2013年10月5日

C# 无边框窗体之窗体移动

摘要: 点击窗体任意位置移动窗体: 需要添加命名空间: 原文地址:http://blog.sina.com.cn/s/blog_4982f49901013wlf.html 阅读全文

posted @ 2013-10-05 11:24 梦琪小生 阅读(680) 评论(0) 推荐(0) 编辑

C# 无边框窗体的最小化问题

摘要: WinForm在窗体风格设置成None时无法最小化的问题。添加以下代码即可实现最小化: protected override CreateParams CreateParams { get { const int WS_MINIMIZEBOX = 0x00020000; // Winuser.h中定 阅读全文

posted @ 2013-10-05 11:12 梦琪小生 阅读(1413) 评论(0) 推荐(0) 编辑

C# 改变无边框窗体的尺寸大小

摘要: 以下代码为修改窗体尺寸的代码: //以下做了一些修正,确保放大缩小按钮区域可以正常使用 Point point = Control.MousePosition; point = PointToClient(point); if (point.X < this.Width - 100 && point 阅读全文

posted @ 2013-10-05 11:04 梦琪小生 阅读(3735) 评论(0) 推荐(0) 编辑

导航