Exemplo n.º 1
0
 /// <summary>
 /// Create the progress dialog.
 /// </summary>
 public ProgressDialog()
 {
     mException            = null;
     mOperation            = null;
     mOperation_Cancelable = null;
     m_IsCancelled         = false; //@singleSection
     InitializeComponent();
     helpProvider1.HelpNamespace = Localizer.Message("CHMhelp_file_name");
     helpProvider1.SetHelpNavigator(this, HelpNavigator.Topic);
     helpProvider1.SetHelpKeyword(this, "HTML Files\\Introducing Obi\\Introducing Obi.htm");
 }
Exemplo n.º 2
0
 //@singleSection
 /// <summary>
 /// Create a cancelable progress dialog with a custom title and operation.
 /// </summary>
 public ProgressDialog(string title, TimeTakingOperation_Cancelable operation)
     : this()
 {
     mOperation_Cancelable = operation;
     Text = title;
 }