/// <summary>
 /// Sets up the background worker.
 /// </summary>
 /// <remarks>
 /// The method passed to this constructor must have one argument.
 /// </remarks>
 /// <param name="p_dlgWorker">The method that will do the work.</param>
 public BackgroundWorkerProgressDialog(ParamWorkerMethod p_dlgWorker)
     : this()
 {
     m_pwmWorkerMethod = p_dlgWorker;
 }
Ejemplo n.º 2
0
 /// <summary>
 ///   Sets up the background worker.
 /// </summary>
 /// <remarks>
 ///   The method passed to this constructor must have one argument.
 /// </remarks>
 /// <param name="p_dlgWorker">The method that will do the work.</param>
 public BackgroundWorkerProgressDialog(ParamWorkerMethod p_dlgWorker)
     : this()
 {
     m_pwmWorkerMethod = p_dlgWorker;
 }