  | ProgressDialogMinimizeBox Property  | 
 
            Gets or sets a value that indicates whether the progress dialog has a minimize button.
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool MinimizeBox { get; set; }Public Property MinimizeBox As Boolean
	Get
	Set
public:
property bool MinimizeBox {
	bool get ();
	void set (bool value);
}member MinimizeBox : bool with get, set
Property Value
Type: 
Boolean if the dialog has a minimize button; otherwise, 
. The default
            value is 
.
            
Remarks  Note | 
|---|
| 
              This property has no effect on modal dialogs (which do not have a minimize button). It only applies
              to modeless dialogs shown by using the Show method.
             | 
              This property must be set before Show is called. Changing property has
              no effect while the dialog is being displayed.
            
See Also