限制WinForm窗体移动
?? ?public partial class FrmTest : Form
?? ?{
?? ? ? ?public?FrmTest()
?? ? ? ?{
?? ? ? ? ? ?InitializeComponent();
?? ? ? ?}
?
?? ? ? ?//
?? ? ? ?// 重写WIN32 WndProc限制拖动窗体
?? ? ? ?//
?? ? ? ?public const int WM_SYSCOMMAND = 0x112;
?? ? ? ?public const int SC_MOVE = 0xF012;?
?? ? ? ?protected override void WndProc(ref Message m)
?? ? ? ?{
?? ? ? ? ? ?if (m.Msg == WM_SYSCOMMAND && m.WParam.ToInt32() == SC_MOVE)
?? ? ? ? ? ? ? ?return;
?? ? ? ? ? ?base.WndProc(ref m);
?? ? ? ?}
?? ?}