PropertyPage Class
Creates a property page using a Windows Forms control.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Inheritance Hierarchy
System.Object
Microsoft.ManagementConsole.PropertyPage
Syntax
public class PropertyPage
public ref class PropertyPage
type PropertyPage = class end
Public Class PropertyPage
Constructors
Name | Description | |
---|---|---|
PropertyPage() | Initializes a new instance of the PropertyPage class. |
Properties
Name | Description | |
---|---|---|
Control | Gets or sets the control to be used in the property page. |
|
Destroyed | Gets the flag that indicates destruction. |
|
Dirty | Gets or sets the dirty flag for the property page. |
|
HelpTopic | Gets or sets the help topic for the property page. |
|
Initialized | Gets the initialization flag. |
|
ParentSheet | Gets the owner of the property page. |
|
Title | Gets or sets the title to use in the property page. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
OnApply() | Indicates that the user has clicked the Apply button and wants all changes to take effect. The OnApply method is invoked on every property sheet when the Apply button is clicked. |
|
OnCancel() | Indicates that the user has chosen Cancel and the property sheet is about to be destroyed. All changes that are made since the last Apply notification are canceled. |
|
OnDestroy() | Sends a notification that the property sheet is about to be destroyed. The property page can begin its cleanup operations when it receives this notification message. |
|
OnInitialize() | Sends an initialize notification for a property page. The default implementation is empty. |
|
OnKillActive() | Sends a notification that the property page is about to lose activation either because another page is being activated or because the user has clicked the OK button. The default implementation allows the property page to be de-activated. |
|
OnOK() | Indicates that the user has clicked either the OK button or the Close button. The OnOK method is invoked on every property page so that all changes can take effect. |
|
OnSetActive() | Sends a notification that the page is about to be activated. |
|
QueryCancel() | Indicates that the user wants to cancel the property sheet. The default implementation allows the Cancel operation. |
|
ToString() | (Inherited from Object.) |
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.ManagementConsole Namespace
Return to top