1 write to footerTextComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
304this.footerTextComboBox = new System.Windows.Forms.ComboBox();
21 references to footerTextComboBox
System.Workflow.ComponentModel (21)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (21)
197this.footerTextComboBox.Items.Add(this.headerFooterNone); 198this.footerTextComboBox.SelectedIndex = 0; 199this.footerTextComboBox.Items.AddRange(this.headerFooterTemplates); 200this.footerTextComboBox.Items.Add(this.headerFooterCustom); 206this.footerTextComboBox.SelectedIndex = 0; //none 210int userFooterIndex = this.footerTextComboBox.Items.IndexOf(userFooter); 215this.footerTextComboBox.SelectedIndex = this.footerTextComboBox.Items.IndexOf(this.headerFooterCustom); 220this.footerTextComboBox.SelectedIndex = userFooterIndex; 717this.footerTableLayoutPanel.Controls.Add(this.footerTextComboBox, 1, 0); 760resources.ApplyResources(this.footerTextComboBox, "footerTextComboBox"); 761this.footerTableLayoutPanel.SetColumnSpan(this.footerTextComboBox, 2); 762this.footerTextComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 763this.footerTextComboBox.FormattingEnabled = true; 764this.footerTextComboBox.Name = "footerTextComboBox"; 765this.footerTextComboBox.SelectedIndexChanged += new System.EventHandler(this.footerTextComboBox_SelectedIndexChanged); 991if (this.footerTextComboBox.SelectedIndex == 0) 994if (!this.footerTextComboBox.Text.Equals(this.headerFooterCustom)) 995this.printDocument.PageSetupData.FooterTemplate = this.footerTextComboBox.Text; 1097this.footerCustom = this.footerTextComboBox.Text.Equals(this.headerFooterCustom); 1100this.customFooterText.Text = this.footerTextComboBox.Text;