1 write to reevaluationComboBox
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (1)
50
this.
reevaluationComboBox
= new System.Windows.Forms.ComboBox();
14 references to reevaluationComboBox
System.Workflow.Activities (14)
Rules\Design\Dialogs\RuleSetDialog.cs (8)
94
this.
reevaluationComboBox
.Items.Add(Messages.ReevaluationNever);
95
this.
reevaluationComboBox
.Items.Add(Messages.ReevaluationAlways);
149
this.
reevaluationComboBox
.Enabled = true;
157
this.
reevaluationComboBox
.SelectedIndex = (int)rule.ReevaluationBehavior;
202
this.
reevaluationComboBox
.Text = string.Empty;
210
this.
reevaluationComboBox
.Enabled = false;
400
rule.ReevaluationBehavior = (RuleReevaluationBehavior)this.
reevaluationComboBox
.SelectedIndex;
437
listViewItem.SubItems[2].Text = (string)this.
reevaluationComboBox
.Items[(int)rule.ReevaluationBehavior];
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (6)
196
this.ruleGroupBox.Controls.Add(this.
reevaluationComboBox
);
215
this.
reevaluationComboBox
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
216
this.
reevaluationComboBox
.FormattingEnabled = true;
217
resources.ApplyResources(this.
reevaluationComboBox
, "reevaluationComboBox");
218
this.
reevaluationComboBox
.Name = "reevaluationComboBox";
219
this.
reevaluationComboBox
.SelectedIndexChanged += new System.EventHandler(this.reevaluationComboBox_SelectedIndexChanged);