Esempio n. 1
0
 public ImportActionEditor(string fileName, bool createOnly, IUIControlEnabled component)
 {
     InitializeComponent();
     this.component = component;
     CreateOnly     = createOnly;
     FileName       = fileName;
 }
Esempio n. 2
0
 public SimpleEditor(string label, bool multiLine, IUIControlEnabled component)
 {
     InitializeComponent();
     this.component   = component;
     lbName.Text      = label;
     tbText.Multiline = multiLine;
 }
Esempio n. 3
0
 public DynamicsSolutionEditor(IUIControlEnabled component)
 {
     InitializeComponent();
     this.component     = component;
     fsEditor.component = this;
     fsEditor.AdjustSize();
 }
 public ActionSelectorEditor(IUIControlEnabled component, List <BaseAction> actions, BaseAction selectedAction)
 {
     InitializeComponent();
     this.component = component;
     PopulateActions(actions);
     SelectedAction = selectedAction;
 }
 public StepSelectorEditor(IUIControlEnabled component, bool activate, string selectedStep)
 {
     InitializeComponent();
     this.component = component;
     Activate       = activate;
     SelectedStep   = selectedStep;
 }
 public WorkflowActionEditor(string workflowId, string fetchXml, IUIControlEnabled component)
 {
     InitializeComponent();
     this.component = component;
     WorkflowId     = workflowId;
     FetchXml       = fetchXml;
 }
 public FileSelectorEditor(IUIControlEnabled component)
 {
     InitializeComponent();
     this.component = component;
 }
Esempio n. 8
0
 public FieldPermissionEditor(IUIControlEnabled component)
 {
     InitializeComponent();
     this.component = component;
 }
Esempio n. 9
0
 public TwoConnections(IUIControlEnabled component)
 {
     InitializeComponent();
     this.component = component;
 }