private void Window_LocationChanged(object sender, EventArgs e)
{
if (this.Left < this.Owner.Left)
this.Left = this.Owner.Left;
if (this.Top < this.Owner.Top)
this.Top = this.Owner.Top;
}
如您所见,上面编写的代码,但我无法在桌面的底部和右侧移动时限制窗口。因为我没有找到任何属性。
Like this.Right or this.Bottom
请建议是否有人实施了相同的。
谢谢马达夫