我有一点问题,当我用手柄调整窗口大小时,窗口可以小于最小尺寸参数。
我试过了:
private void wndMain_SizeChanged(object sender, SizeChangedEventArgs e)
{
// Check there is no Deviation in the height
if (e.NewSize.Height < this.MinHeight)
{
this.Height = this.MinHeight;
}
// Check there is no Deviation in the width
if (e.NewSize.Width < this.MinWidth)
{
this.Width = this.MinWidth;
}
}
但它看起来很糟糕,因为这种变化是持续不断的,并且一次又一次地重新调整......
有一个选项可以取消调整sizechanged事件的大小吗? 谢谢!