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