Interaction logic for TestLine.xaml
Inheritance: System.Windows.Controls.UserControl
コード例 #1
0
ファイル: SuiteView.xaml.cs プロジェクト: larsw/storyteller
        public ITestLineDriver AddTest(Test test, Action <Test> queueAction)
        {
            TestLineControls controls = new TestLinePanel().CreateControls(grid);

            return(new TestLineDriver(controls, test, queueAction));
        }
コード例 #2
0
 public ITestLineDriver AddTest(Test test, Action<Test> queueAction)
 {
     TestLineControls controls = new TestLinePanel().CreateControls(grid);
     return new TestLineDriver(controls, test, queueAction);
 }