2

我有一个小问题,当我用夹子调整窗口大小时,窗口可以小于最小尺寸参数。

我试过这个:

    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 事件?谢谢!

4

0 回答 0