1 write to paperSourceComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
292
this.
paperSourceComboBox
= new System.Windows.Forms.ComboBox();
17 references to paperSourceComboBox
System.Workflow.ComponentModel (17)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (17)
662
this.paperTableLayoutPanel.Controls.Add(this.
paperSourceComboBox
, 1, 1);
670
resources.ApplyResources(this.
paperSourceComboBox
, "paperSourceComboBox");
671
this.
paperSourceComboBox
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
672
this.
paperSourceComboBox
.FormattingEnabled = true;
673
this.
paperSourceComboBox
.Name = "paperSourceComboBox";
1009
if (this.
paperSourceComboBox
.SelectedItem != null)
1010
this.printDocument.DefaultPageSettings.PaperSource = (PaperSource)this.
paperSourceComboBox
.SelectedItem;
1191
this.
paperSourceComboBox
.Items.Clear();
1192
this.
paperSourceComboBox
.DisplayMember = "SourceName";
1195
this.
paperSourceComboBox
.Items.Add(paperSource);
1196
if (null == this.
paperSourceComboBox
.SelectedItem &&
1199
this.
paperSourceComboBox
.SelectedItem = paperSource;
1202
if (null == this.
paperSourceComboBox
.SelectedItem &&
1203
this.
paperSourceComboBox
.Items.Count > 0)
1205
this.
paperSourceComboBox
.SelectedItem = this.
paperSourceComboBox
.Items[0] as PaperSource;
1206
this.printDocument.DefaultPageSettings.PaperSource = this.
paperSourceComboBox
.SelectedItem as PaperSource;