Click or drag to resize

ProgressDialogText Property

Gets or sets a short description of the operation being carried out.

Namespace:  Ookii.Dialogs
Assembly:  Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public string Text { 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