1 write to headerTextComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
315
this.
headerTextComboBox
= new System.Windows.Forms.ComboBox();
21 references to headerTextComboBox
System.Workflow.ComponentModel (21)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (21)
161
this.
headerTextComboBox
.Items.Add(this.headerFooterNone);
162
this.
headerTextComboBox
.Items.AddRange(this.headerFooterTemplates);
163
this.
headerTextComboBox
.Items.Add(this.headerFooterCustom);
164
this.
headerTextComboBox
.SelectedIndex = 0;
170
this.
headerTextComboBox
.SelectedIndex = 0; //none
174
int userHeaderIndex = this.
headerTextComboBox
.Items.IndexOf(userHeader);
179
this.
headerTextComboBox
.SelectedIndex = this.
headerTextComboBox
.Items.IndexOf(this.headerFooterCustom);
184
this.
headerTextComboBox
.SelectedIndex = userHeaderIndex;
802
this.headerTableLayoutPanel.Controls.Add(this.
headerTextComboBox
, 1, 0);
846
resources.ApplyResources(this.
headerTextComboBox
, "headerTextComboBox");
847
this.headerTableLayoutPanel.SetColumnSpan(this.
headerTextComboBox
, 2);
848
this.
headerTextComboBox
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
849
this.
headerTextComboBox
.FormattingEnabled = true;
850
this.
headerTextComboBox
.Name = "headerTextComboBox";
851
this.
headerTextComboBox
.SelectedIndexChanged += new System.EventHandler(this.headerTextComboBox_SelectedIndexChanged);
979
if (this.
headerTextComboBox
.SelectedIndex == 0)
982
if (!this.
headerTextComboBox
.Text.Equals(this.headerFooterCustom))
983
this.printDocument.PageSetupData.HeaderTemplate = this.
headerTextComboBox
.Text;
1090
this.headerCustom = this.
headerTextComboBox
.Text.Equals(this.headerFooterCustom);
1093
this.customHeaderText.Text = this.
headerTextComboBox
.Text;