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