The properties of the ServiceInstallerDialog class are listed below. For a complete list of ServiceInstallerDialog class members, see the ServiceInstallerDialog Members topic.
AcceptButton (inherited from Form) | Gets or sets the button on the form that is clicked when the user presses the ENTER key. |
AccessibilityObject (inherited from RichControl) | The Accessibility Object for this RichControl |
AccessibleDefaultActionDescription (inherited from RichControl) | The default action description of the control |
AccessibleDescription (inherited from RichControl) | The accessible description of the control |
AccessibleHelpProvider (inherited from RichControl) | The help provider for this RichControl |
AccessibleName (inherited from RichControl) | The accessible name of the control |
AccessibleRole (inherited from RichControl) | The accessible role of the control |
ActiveControl (inherited from ContainerControl) | The current active control. |
ActiveMDIChild (inherited from Form) | Gets the currently active multiple document interface (MDI) child window. |
AllowDrop (inherited from RichControl) | The allowDrop property. If allowDrop is set to true then this control will allow drag and drop operations and events to be used. |
AllowTransparency (inherited from RichControl) | Determines if the control should be allowed to have the opacity adjusted. This is primarily a performance optimization, in that you can always set the opacity to any value, and that will force AllowTransparency to true. However, setting the opacity to any given value will switch the control into layered mode. By setting the AllowTransparency property to false the control will actually switch out of layered mode, which provides better performance if you don't intend to adjust the opacity. |
Anchor (inherited from RichControl) | The current value of the anchor property. The anchor property determines which edges of the control are anchored to the container's edges. |
AutoScale (inherited from Form) | Gets or sets a value indicating whether the form will adjust its size to fit the height of the font used on the form and scale its controls. |
AutoScaleBaseSize (inherited from Form) | The base size used for autoscaling. The AutoScaleBaseSize is used internally to determine how much to scale the form when AutoScaling is used. |
AutoScroll (inherited from Form) | Gets or sets a value indicating whether the form implements autoscrolling. |
AutoScrollMargin (inherited from ScrollableControl) | Gets or sets the size of the auto-scroll margin. |
AutoScrollMinSize (inherited from ScrollableControl) | Retrieves the current value of the AutoScrollMinSize property. The AutoScrollMinSize property is used internally to manage the screen size allocated to the automatic scrollbars. |
AutoScrollPosition (inherited from ScrollableControl) | Retrieves the current value of the AutoScrollPosition property. The AutoScrollPosition property is used internally to adjust the position of controls that there placed on the Form throughout the form designer. |
BackColor (inherited from RichControl) | The background color of this control. This is an ambient property and will always return a non-null value. |
BackgroundImage (inherited from RichControl) | The background image of the control. |
BindingManager (inherited from ContainerControl) | The binding manager for the container control. |
Bindings (inherited from RichControl) | Retrieves the bindings for this control. |
BorderStyle (inherited from Form) | Gets or sets the border style of the form. |
Bottom (inherited from Control) | The bottom coordinate of this control. |
Bounds (inherited from Control) | The bounds of this control. This is the window coordinates of the control in parent client coordinates. |
CancelButton (inherited from Form) | Gets or sets the button control that will be clicked when the user presses the ESC key. |
CanFocus (inherited from Control) | Checks if this control can receive focus. The result is true if the control has a handle and if it and all of its parent controls are both visible and enabled. |
CanSelect (inherited from Control) | Checks if this control can be selected. The result is true if the control is contained in a form and if all of its parent controls are both visible and enabled. |
Capture (inherited from Control) | If this control has captured the mouse then this will return true. |
CausesValidation (inherited from Control) | Indicates whether entering this control causes validation on the controls requiring validation. This is set to false usually for things like the Help button, etc... |
ClientRectangle (inherited from Control) | The client rect of the control. |
ClientSize (inherited from Form) | Gets or sets the size of the client area of the form. |
CompanyName (inherited from RichControl) | Retrieves the company name of this specific component. |
ContainsFocus (inherited from Control) | Indicates whether the control or one of its children currently has the system focus. |
ContextMenu (inherited from RichControl) | The contextMenu associated with this control. The contextMenu will be shown when the user right clicks the mouse on the control. |
ControlBox (inherited from Form) | Gets or sets a value indicating whether the form has a control box. |
Controls (inherited from Control) | Collection of child controls. |
Created (inherited from Control) | Returns true if the control has been created. |
Cursor (inherited from RichControl) | Retrieves the cursor that will be displayed when the mouse is over this control. |
DesktopBounds (inherited from Form) | Gets or sets the size and location of the form on the Windows desktop. |
DesktopLocation (inherited from Form) | Gets or sets the location of the form on the Windows desktop. |
DialogResult (inherited from Form) | Gets or sets the dialog result for the form. |
DisplayRectangle (inherited from ScrollableControl) | Retreives the current display rectangle. The display rectangle is the virtual display area that is used to layout components. The position and dimensions of the Form's display rectangle change during autoScroll. |
Disposed (inherited from Control) | Indicates that the control has been disposed, and is no longer a valid Windows control even though the object instance is still alive. |
Disposing (inherited from Control) | Indicates that the control is in the process of being beendisposed, and is no longer a valid Windows control even though the object instance is still alive. |
Dock (inherited from RichControl) | The dock property. The dock property controls to which edge of the container this control is docked to. For example, when docked to the top of the container, the control will be displayed flush at the top of the container, extending the length of the container. |
DockPadding (inherited from ScrollableControl) | Gets the dock padding settings for all edges of the control. |
Enabled (inherited from Control) | The current enabled state of this control. |
Focused (inherited from Control) | Returns true if this control has focus. |
Font (inherited from RichControl) | Retrieves the current font for this control. This will be the font used by default for painting and text in the control. |
ForeColor (inherited from RichControl) | The foreground color of the control. |
Handle (inherited from Control) | The HWND handle that this control is bound to. If the handle has not yet been created, this will force handle creation. |
HandleCreated (inherited from Control) | Whether or not this control has a handle associated with it. |
Height (inherited from Control) | The height of this control |
HelpButton (inherited from Form) | Gets or sets a value indicating whether a help button should be displayed in the caption box of the form. |
Icon (inherited from Form) | Gets or sets the icon for the form. |
IMEMode (inherited from RichControl) | Specifies a value that determines the IME (Input Method Editor) status of the object when that object is selected. |
InvokeRequired (inherited from RichControl) | Determines if the caller must call invoke when making method calls to this control. Controls in WinForms are bound to a specific thread, and are not thread safe. Therefore, if you are calling a control's method from a different thread, you must use the control's invoke method to marshal the call to the proper thread. This function can be used to determine if you must call invoke, which can be handy if you don't know what thread owns a control. There are five functions on a control that are safe to call from any thread: GetInvokeRequired, Invoke, BeginInvoke, EndInvoke and CreateGraphics. For all other metohd calls, you should use one of the invoke methods. |
IsAccessible (inherited from RichControl) | Indicates whether or not this control is an accessible control i.e. whether it should be visible to accessibility applications. |
IsMDIChild (inherited from Form) | Gets a value indicating whether the form is a multiple document interface (MDI) child form. |
IsMDIContainer (inherited from Form) | Gets or sets a value indicating whether the form is a container for multiple document interface (MDI) child forms. |
KeyPreview (inherited from Form) | Gets or sets a value indicating whether the form will receive key events before the event is passed to the control that has focus. |
Left (inherited from Control) | The left coordinate of this control. |
Location (inherited from Control) | The location of this control. |
MaximizeBox (inherited from Form) | Gets or sets a value indicating whether the maximize box is displayed in the caption box of the form. |
MDIChildren (inherited from Form) | Gets an array of forms that represent the multiple document interface (MDI) child forms that are parented to this form. |
MDIParent (inherited from Form) | Gets or sets the current multiple document interface (MDI) parent form of this form. |
Menu (inherited from Form) | Gets or sets the MainMenu that is displayed in the form. |
MergedMenu (inherited from Form) | Gets the merged menu for the form. |
MinimizeBox (inherited from Form) | Gets or sets a value indicating whether the minimize box is displayed in the caption box of the form. |
Modal (inherited from Form) | Gets a value indicating whether this form is displayed modally. |
Opacity (inherited from Form) | [To be supplied.] |
OwnedForms (inherited from Form) | Gets an array of Form objects that represent all forms that are owned by this form. |
Owner (inherited from Form) | Gets or sets the form that owns this form. |
Parent (inherited from Control) | The parent of this control. |
ParentForm (inherited from Form) | The form that is the visual parent of this form. |
Password | [To be supplied.] |
ProductName (inherited from RichControl) | Retrieves the product name of this specific component. |
ProductVersion (inherited from RichControl) | Retrieves the product version of this specific component. |
RecreatingHandle (inherited from Control) | This is true if the control is currently recreating its handle. |
Region (inherited from RichControl) | The Region associated with this control. (defines the outline/silhouette/boundary of control) |
Result | [To be supplied.] |
Right (inherited from Control) | The right coordinate of this control. |
RightToLeft (inherited from RichControl) | This is used for international applications where the language is written from RightToLeft. When this property is true, control placement and text will be from right to left. |
ShowInTaskbar (inherited from Form) | If ShowInTaskbar is true then the form will be displayed in the Windows Taskbar. |
Site (inherited from MarshalByRefComponent) | Gets or sets the site of the component. |
Size (inherited from Form) | Gets or sets the size of the form. |
SizeGripStyle (inherited from Form) | Gets or sets the style of size grip to display in the lower-left corner of the form. |
StartPosition (inherited from Form) | Gets or sets the starting position of the form at run time. |
TabIndex (inherited from Form) | [To be supplied.] |
TabStop (inherited from Control) | A boolean value indicating whether the user can give the focus to this control using the TAB key. |
Text (inherited from Control) | The current text associated with this control. |
Top (inherited from Control) | Top coordinate of this control. |
TopLevel (inherited from Form) | Gets or sets a value indicating whether to display the form as a top-level window. |
TopLevelControl (inherited from Control) | The top level control that contains this control. This doesn't have to be the same as the value returned from getForm since forms can be parented to other controls. |
TopMost (inherited from Form) | Gets or sets a value indicating whether the form should be displayed as the top-most form of your application. |
Username | [To be supplied.] |
Visible (inherited from Form) | Gets or sets a value indicating whether the form is visible. |
Width (inherited from Control) | The width of this control. |
WindowState (inherited from Form) | The WindowState of the Form. Valid values are:
FormWindowState.Normal FormWindowState.Maximized FormWindowState.Minimized |
WindowTarget (inherited from Control) | The target of Win32 window messages. |
CreateParams (inherited from Form) | Retrieves the CreateParams used to create the window. If a subclass overrides this function, it must call the super implementation. |
CreateThreadId (inherited from Control) | Retrieves the Win32 thread ID of the thread that created the handle for this control. If the control's handle hasn't been created yet, this method will return the current thread's ID. |
FontHeight (inherited from RichControl) | [To be supplied.] |
HScroll (inherited from ScrollableControl) | Gets or sets a value indicating whether the horizontal scroll bar is visible. |
InternalHandle (inherited from Control) | Returns the current value of the handle. This may be zero if the handle has not been created. |
MaximizedBounds (inherited from Form) | Gets the size of the form when it is maximized. |
MaxTrackSize (inherited from Form) | Gets the maximum size the form can be resized to. |
MinTrackSize (inherited from Form) | Gets the minimum size the form can be resized to. |
ParkingFormHandle (inherited from RichControl) | [To be supplied.] |
RenderRightToLeft (inherited from RichControl) | [To be supplied.] |
RichParent (inherited from RichControl) | [To be supplied.] |
VScroll (inherited from ScrollableControl) | Gets or sets a value indicating whether the vertical scroll bar is visible. |
WarningBanner (inherited from Form) | Determines if this form should be displayed with a warning banner. |
WindowText (inherited from Form) | Gets or sets the text to display in the caption bar of the form. |
ServiceInstallerDialog Class | System.ServiceProcess Namespace