1 write to paperSizeComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
293this.paperSizeComboBox = new System.Windows.Forms.ComboBox();
24 references to paperSizeComboBox
System.Workflow.ComponentModel (24)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (24)
663this.paperTableLayoutPanel.Controls.Add(this.paperSizeComboBox, 1, 0); 677resources.ApplyResources(this.paperSizeComboBox, "paperSizeComboBox"); 678this.paperSizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 679this.paperSizeComboBox.FormattingEnabled = true; 680this.paperSizeComboBox.Name = "paperSizeComboBox"; 681this.paperSizeComboBox.SelectedIndexChanged += new System.EventHandler(this.paperSizeComboBox_SelectedIndexChanged); 1005if (this.paperSizeComboBox.SelectedItem != null) 1006this.printDocument.DefaultPageSettings.PaperSize = (PaperSize)this.paperSizeComboBox.SelectedItem; 1069PaperSize paperSize = this.paperSizeComboBox.SelectedItem as PaperSize; 1118PaperSize paperSize = this.paperSizeComboBox.SelectedItem as PaperSize; 1146this.paperSizeComboBox.Items.Clear(); 1147this.paperSizeComboBox.DisplayMember = "PaperName"; 1152this.paperSizeComboBox.Items.Add(paperSize); 1153if (null == this.paperSizeComboBox.SelectedItem && 1158this.paperSizeComboBox.SelectedItem = paperSize; 1164if (null == this.paperSizeComboBox.SelectedItem) 1169foreach (PaperSize paperSize in this.paperSizeComboBox.Items) 1171if (null == this.paperSizeComboBox.SelectedItem && 1176this.paperSizeComboBox.SelectedItem = paperSize; 1182if (null == this.paperSizeComboBox.SelectedItem && 1183this.paperSizeComboBox.Items.Count > 0) 1185this.paperSizeComboBox.SelectedItem = this.paperSizeComboBox.Items[0] as PaperSize; 1186this.printDocument.DefaultPageSettings.PaperSize = this.paperSizeComboBox.SelectedItem as PaperSize;