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