plugins/wb.printing/windows/cs/PrintFileDialog.Designer.cs (118 lines of code) (raw):

namespace WBPluginPrinting { partial class PrintFileDialog { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.checkBox2 = new System.Windows.Forms.CheckBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.checkBox3 = new System.Windows.Forms.CheckBox(); this.panel1 = new System.Windows.Forms.Panel(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // saveFileDialog1 // this.saveFileDialog1.RestoreDirectory = true; this.saveFileDialog1.Title = "Print to File"; this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk); // // button1 // this.button1.Location = new System.Drawing.Point(343, 309); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 2; this.button1.Text = "&Export"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(424, 309); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 3; this.button2.Text = "&Cancel"; this.button2.UseVisualStyleBackColor = true; // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Location = new System.Drawing.Point(25, 21); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(86, 17); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "Print Borders"; this.checkBox1.UseVisualStyleBackColor = true; // // checkBox2 // this.checkBox2.AutoSize = true; this.checkBox2.Location = new System.Drawing.Point(25, 44); this.checkBox2.Name = "checkBox2"; this.checkBox2.Size = new System.Drawing.Size(120, 17); this.checkBox2.TabIndex = 1; this.checkBox2.Text = "Print Page Numbers"; this.checkBox2.UseVisualStyleBackColor = true; // // groupBox1 // this.groupBox1.Controls.Add(this.checkBox2); this.groupBox1.Controls.Add(this.checkBox1); this.groupBox1.Location = new System.Drawing.Point(8, 222); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(494, 75); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Options"; // // groupBox2 // this.groupBox2.Controls.Add(this.panel1); this.groupBox2.Controls.Add(this.checkBox3); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top; this.groupBox2.Location = new System.Drawing.Point(8, 8); this.groupBox2.Name = "groupBox2"; this.groupBox2.Padding = new System.Windows.Forms.Padding(8); this.groupBox2.Size = new System.Drawing.Size(494, 208); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "Pages to Print"; // // checkBox3 // this.checkBox3.AutoSize = true; this.checkBox3.Location = new System.Drawing.Point(8, 0); this.checkBox3.Name = "checkBox3"; this.checkBox3.Size = new System.Drawing.Size(125, 17); this.checkBox3.TabIndex = 1; this.checkBox3.Text = "Select Pages to Print"; this.checkBox3.UseVisualStyleBackColor = true; // // panel1 // this.panel1.AutoScroll = true; this.panel1.BackColor = System.Drawing.SystemColors.Window; this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(8, 21); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(478, 179); this.panel1.TabIndex = 4; // // PrintFileDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(510, 343); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Name = "PrintFileDialog"; this.Padding = new System.Windows.Forms.Padding(8); this.Text = "Print Model to File"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SaveFileDialog saveFileDialog1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; private System.Windows.Forms.CheckBox checkBox1; private System.Windows.Forms.CheckBox checkBox2; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.CheckBox checkBox3; } }