コード例 #1
0
 public EditCommand(ICommand command, Test test, EditTest parentForm, IProjectManager projectManager)
 {
     InitializeComponent();
     this.test           = test;
     this.command        = command;
     this.parentForm     = parentForm;
     this.projectManager = projectManager;
 }
コード例 #2
0
 public SelectFromDropdownCommandUC(ICommand command, Test test, EditTest parentForm, EditCommand mainCommandForm, IProjectManager projectManager)
 {
     InitializeComponent();
     this.command         = command as SelectFromDropdownCommand;
     this.test            = test;
     this.parentForm      = parentForm;
     this.mainCommandForm = mainCommandForm;
     this.projectManager  = projectManager;
 }
コード例 #3
0
 public IfContainsStringCommandUC(ICommand command, Test test, EditTest parentForm, EditCommand mainCommandForm, IProjectManager projectManager)
 {
     InitializeComponent();
     this.command         = command as IfContainsStringCommand;
     this.test            = test;
     this.parentForm      = parentForm;
     this.mainCommandForm = mainCommandForm;
     this.projectManager  = projectManager;
 }
コード例 #4
0
 public FillTextboxCommandUC(ICommand command, Test test, EditTest parentForm, EditCommand mainCommandForm, IProjectManager projectManager)
 {
     InitializeComponent();
     this.command         = command as FillTextboxCommand;
     this.test            = test;
     this.parentForm      = parentForm;
     this.mainCommandForm = mainCommandForm;
     this.projectManager  = projectManager;
 }