コード例 #1
0
 private void init()
 {
     openTaskViewController = new OpenTaskViewController(navigationController);
     openTestViewController = new OpenTestViewController(navigationController);
     presentTaskViewController = new PresentTaskViewController(navigationController);
     presentTestViewController = new PresentTestViewController(navigationController);
 }
コード例 #2
0
 void CreateTestDelegate.showPresentTestController(string nameTest)
 {
     presentTestViewController = new PresentTestViewController(this);
     presentTestViewController.setupTask(false);
     presentTestViewController.FindForm().Text = nameTest;
     presentTestViewController.ShowDialog();
 }
コード例 #3
0
 void OpenTestDelegate.showPresentTestController(string nameTest)
 {
     presentTestViewController = new PresentTestViewController(this);
     presentTestViewController.NameTest = nameTest;
     presentTestViewController.FindForm().Text = nameTest;
     presentTestViewController.ShowDialog();
 }
コード例 #4
0
 void ChangeTestDelegate.showPresentTestController(string testName)
 {
     presentTestViewController = new PresentTestViewController(this);
     presentTestViewController.setupTask(true);
     presentTestViewController.NameTest = testName;
     presentTestViewController.FindForm().Text = testName;
     presentTestViewController.ShowDialog();
 }