  | ProgressDialogDoWork Event | 
 
            Event raised when the dialog is displayed.
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic 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.ComponentModelDoWorkEventHandler
Remarks
            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