C# want to restrict where a form can be moved to

后端 未结 4 1202
既然无缘
既然无缘 2020-12-17 06:53

I am trying to restrict where a form can be moved to on the desktop. Basically I don\'t want them to be able to move the form off the desktop. I found a bunch of SetBounds f

4条回答
  •  感情败类
    2020-12-17 07:06

    I realize you are not interested in an answer anymore, I'll post a solution anyway. You want to handle the WM_MOVING message and override the target position. Beware that it has side-effects on Win7 and is inadvisable if the user has more than one monitor. Mouse position handling isn't great either. The code:

    using System;
    using System.ComponentModel;
    using System.Drawing;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;
    
    namespace WindowsFormsApplication1 {
      public partial class Form1 : Form {
        public Form1() {
          InitializeComponent();
        }
        protected override void WndProc(ref Message m) {
          if (m.Msg == 0x216) { // Trap WM_MOVING
            RECT rc = (RECT)Marshal.PtrToStructure(m.LParam, typeof(RECT));
            Screen scr = Screen.FromRectangle(Rectangle.FromLTRB(rc.left, rc.top, rc.right, rc.bottom));
            if (rc.left < scr.WorkingArea.Left) {rc.left = scr.WorkingArea.Left; rc.right = rc.left + this.Width; }
            if (rc.top < scr.WorkingArea.Top) { rc.top = scr.WorkingArea.Top; rc.bottom = rc.top + this.Height; }
            if (rc.right > scr.WorkingArea.Right) { rc.right = scr.WorkingArea.Right; rc.left = rc.right - this.Width; }
            if (rc.bottom > scr.WorkingArea.Bottom) { rc.bottom = scr.WorkingArea.Bottom; rc.top = rc.bottom - this.Height; }
            Marshal.StructureToPtr(rc, m.LParam, false);
          }
          base.WndProc(ref m);
        }
        private struct RECT {
          public int left; 
          public int top; 
          public int right; 
          public int bottom; 
        }
      }
    }
    

提交回复
热议问题