Form.IsRestrictedWindow 属性

定义

获取一个值,该值指示窗体是否可以不受限制地使用所有窗口和用户输入事件。

public:
 property bool IsRestrictedWindow { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsRestrictedWindow { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsRestrictedWindow : bool
Public ReadOnly Property IsRestrictedWindow As Boolean

属性值

Boolean

如果窗体有限制,则为 true;否则为 false。 默认值为 true

属性

注解

IsRestrictedWindow 属性确定是否 AllWindows 授予权限。 此属性在窗体的构造函数的运行时设置,并在窗体的生存期内缓存。 Windows 窗体在部分信任中运行的应用程序无法绕过此检查,因为公共语言运行时可确保始终在部分信任中调用父构造函数。

适用于