* UIForm: 屏蔽一些属性

This commit is contained in:
Sunny 2022-04-26 15:56:51 +08:00
parent 74631b3e2e
commit e006a5032b

View File

@ -32,6 +32,7 @@
* 2022-03-19: V3.1.1
* 2022-03-28: V3.1.1
* 2022-04-02: V3.1.2 AutoScaleMode为None
* 2022-04-26: V3.1.8
******************************************************************************/
using System;
@ -89,6 +90,13 @@ namespace Sunny.UI
set => base.IsMdiContainer = false;
}
[Browsable(false)]
public new bool AutoScroll
{
get => base.AutoScroll;
set => base.AutoScroll = false;
}
[DefaultValue(false), Category("SunnyUI"), Description("禁止控件跟随窗体缩放")]
public bool ZoomScaleDisabled { get; set; }