Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 internal UninstallMachine(StateMachineContext context)
     : base(context)
 {
     m_Context.Uninstallation();
     //  m_NextButton.Text = Resources.FinishButtonText;
 }
Ejemplo n.º 4
0
 internal FinishedMachine(StateMachineContext context)
     : base(context)
 {
     //    m_NextButton.Text = Resources.FinishButtonText;
 }
Ejemplo n.º 5
0
 public SetupDataDialogMachine(StateMachineContext context)
     : base(context)
 {
 }
Ejemplo n.º 6
0
 public AbstractMachine(StateMachineContext context)
 {
     m_Context = context;
 }