示例#1
0
 internal ValidationMachine(StateMachineContext context)
     : base(context)
 {
     m_BackgroundWorker = new BackgroundWorker()
     {
         WorkerReportsProgress = true, WorkerSupportsCancellation = true
     };
     m_BackgroundWorker.DoWork             += m_BackgroundWorker_DoWork;
     m_BackgroundWorker.ProgressChanged    += m_BackgroundWorker_ProgressChanged;
     m_BackgroundWorker.RunWorkerCompleted += m_BackgroundWorker_RunWorkerCompleted;
 }
示例#2
0
 internal InstallationMachine(StateMachineContext context)
     : base(context)
 {
     m_BackgroundWorker = new BackgroundWorker()
     {
         WorkerReportsProgress = true, WorkerSupportsCancellation = true
     };
     m_BackgroundWorker.DoWork             += m_BackgroundWorker_DoWork;
     m_BackgroundWorker.ProgressChanged    += m_BackgroundWorker_ProgressChanged;
     m_BackgroundWorker.RunWorkerCompleted += m_BackgroundWorker_RunWorkerCompleted;
     //  m_NextButton.Text = Resources.FinishButtonText;
 }
示例#3
0
 internal UninstallMachine(StateMachineContext context)
     : base(context)
 {
     m_Context.Uninstallation();
     //  m_NextButton.Text = Resources.FinishButtonText;
 }
示例#4
0
 internal FinishedMachine(StateMachineContext context)
     : base(context)
 {
     //    m_NextButton.Text = Resources.FinishButtonText;
 }
示例#5
0
 public SetupDataDialogMachine(StateMachineContext context)
     : base(context)
 {
 }
示例#6
0
 public AbstractMachine(StateMachineContext context)
 {
     m_Context = context;
 }