Exemplo n.º 1
0
 public CancelATestPath(YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs cancelATestEventArgs,
                        YellowstonePathology.UI.Navigation.PageNavigator pageNavigator,
                        System.Windows.Window window)
     : base(pageNavigator, window)
 {
     this.m_CancelATestEventArgs = cancelATestEventArgs;
 }
Exemplo n.º 2
0
 public CancelTestWarningPage(YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs cancelTestEventArgs)
 {
     this.m_CancelTestEventArgs = cancelTestEventArgs;
     InitializeComponent();
     this.SetupPage();
     DataContext = this;
 }
 public CancelTestWarningPage(YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs cancelTestEventArgs)
 {
     this.m_CancelTestEventArgs = cancelTestEventArgs;
     InitializeComponent();
     this.SetupPage();
     DataContext = this;
 }
Exemplo n.º 4
0
 public CancelATestPath(YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs cancelATestEventArgs, 
     YellowstonePathology.UI.Navigation.PageNavigator pageNavigator,
     System.Windows.Window window)
     : base(pageNavigator, window)
 {
     this.m_CancelATestEventArgs = cancelATestEventArgs;
 }
Exemplo n.º 5
0
        private void CancelTest(object sender, YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs e)
        {
            CancelATestPath cancelATestPath = new CancelATestPath(e, this.m_PageNavigator, this.m_Window);

            cancelATestPath.Finish += new FinishEventHandler(CancellATestPath_Finish);
            cancelATestPath.Back   += new CancelATestPath.BackEventHandler(CancellATestPath_Back);
            cancelATestPath.Start();
        }
Exemplo n.º 6
0
 private void CancelTestWarningPage_Back(object sender, YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs e)
 {
     this.Back(this, e);
 }
Exemplo n.º 7
0
 private void CancellATestPath_Back(object sender, YellowstonePathology.UI.CustomEventArgs.CancelTestEventArgs e)
 {
     System.Windows.Controls.UserControl userControl = (System.Windows.Controls.UserControl)e.ResultPage;
     this.m_PageNavigator.Navigate(userControl);
 }