| ProgressDialogDoWork Event |
Event raised when the dialog is displayed.
Namespace:
Ookii.Dialogs.Wpf
Assembly:
Ookii.Dialogs.Wpf (in Ookii.Dialogs.Wpf.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public event DoWorkEventHandler DoWork
Public Event DoWork As DoWorkEventHandler
public:
event DoWorkEventHandler^ DoWork {
void add (DoWorkEventHandler^ value);
void remove (DoWorkEventHandler^ value);
}
member DoWork : IEvent<DoWorkEventHandler,
DoWorkEventArgs>
Value
Type:
System.ComponentModelDoWorkEventHandlerRemarks
Use this event to perform the operation that the dialog is showing the progress for.
This event will be raised on a different thread than the UI thread.
See Also