using System
using System.Windows.Forms
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent()
}
#region 移动窗体
/// <summary>
/// 重写WndProc方法,实现窗体移动和禁止双击最大化
/// </summary>
/// <param name="m">Windows 消息</param>
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case 0x4e:
case 0xd:
case 0xe:
case 0x14:
base.WndProc(ref m)
break
case 0x84://鼠标点任意位置后可以拖动窗体
this.DefWndProc(ref m)
if (m.Result.ToInt32() == 0x01)
{
m.Result = new IntPtr(0x02)
}
break
case 0xA3://禁止双击最大化
break
default:
base.WndProc(ref m)
break
}
}
#endregion
}
}
z这个功能微软是没有给直接提供的,有两种方法解决此问题,一种是你自己做图片做成上面是类似windows的界面,下面是没框框的界面,再往里面手动写入关闭的功能,另一种是自定义控件,你可以做一个这样的控件,做成你喜欢或是你自己认为合适的界面的样子,就只有这两种办法!欢迎分享,转载请注明来源:内存溢出
评论列表(0条)