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