Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Form::IsRestrictedWindow Property

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets a value indicating whether the form can use all windows and user input events without restriction.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property bool IsRestrictedWindow {
	bool get();
}

Property Value

Type: System::Boolean

true if the form has restrictions; otherwise, false. The default is true.

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft