1 write to chainingBehaviourComboBox
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (1)
42this.chainingBehaviourComboBox = new System.Windows.Forms.ComboBox();
11 references to chainingBehaviourComboBox
System.Workflow.Activities (11)
Rules\Design\Dialogs\RuleSetDialog.cs (5)
97this.chainingBehaviourComboBox.Items.Add(Messages.Sequential); 98this.chainingBehaviourComboBox.Items.Add(Messages.ExplicitUpdateOnly); 99this.chainingBehaviourComboBox.Items.Add(Messages.FullChaining); 109this.chainingBehaviourComboBox.SelectedIndex = (int)this.dialogRuleSet.ChainingBehavior; 407this.dialogRuleSet.ChainingBehavior = (RuleChainingBehavior)this.chainingBehaviourComboBox.SelectedIndex;
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (6)
130this.panel1.Controls.Add(this.chainingBehaviourComboBox); 143this.chainingBehaviourComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 144this.chainingBehaviourComboBox.FormattingEnabled = true; 145resources.ApplyResources(this.chainingBehaviourComboBox, "chainingBehaviourComboBox"); 146this.chainingBehaviourComboBox.Name = "chainingBehaviourComboBox"; 147this.chainingBehaviourComboBox.SelectedIndexChanged += new System.EventHandler(this.chainingBehaviourComboBox_SelectedIndexChanged);