| ProgressDialogText Property |
Gets or sets a short description of the operation being carried out.
Namespace:
Ookii.Dialogs.Wpf
Assembly:
Ookii.Dialogs.Wpf (in Ookii.Dialogs.Wpf.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public string Text { get; set; }
Public Property Text As String
Get
Set
public:
property String^ Text {
String^ get ();
void set (String^ value);
}
member Text : string with get, set
Property Value
Type:
String
A short description of the operation being carried. The default value is an empty string.
Remarks
This is the primary message to the user.
This property can be changed while the dialog is running, but may only be changed from the thread which
created the progress dialog. The recommended method to change this value while the dialog is running
is to use the ReportProgress(Int32, String, String) method.
See Also