Form.IsRestrictedWindow Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the form can use all windows and user input events without restriction.
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
Property Value
true
if the form has restrictions; otherwise, false
. The default is true
.
- Attributes
Remarks
The IsRestrictedWindow property determines whether the AllWindows permission is granted. This property is set at run time in the form's constructor, and is cached for the lifetime of the form. Windows Forms applications running in partial trust cannot circumvent this check, as the common language runtime ensures that the parent constructor is always called in partial trust.