| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- namespace BulkPrinting
- {
- partial class PrinterSettingsForm
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.initStringTextBox = new System.Windows.Forms.TextBox();
- this.resetButton = new System.Windows.Forms.Button();
- this.okButton = new System.Windows.Forms.Button();
- this.cancelButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.ForeColor = System.Drawing.Color.White;
- this.label1.Location = new System.Drawing.Point(13, 13);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(155, 17);
- this.label1.TabIndex = 0;
- this.label1.Text = "Printer Init String (Hex):";
- //
- // initStringTextBox
- //
- this.initStringTextBox.Location = new System.Drawing.Point(174, 13);
- this.initStringTextBox.Name = "initStringTextBox";
- this.initStringTextBox.Size = new System.Drawing.Size(475, 22);
- this.initStringTextBox.TabIndex = 0;
- //
- // resetButton
- //
- this.resetButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
- this.resetButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
- this.resetButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.resetButton.ForeColor = System.Drawing.Color.White;
- this.resetButton.Location = new System.Drawing.Point(13, 48);
- this.resetButton.Name = "resetButton";
- this.resetButton.Size = new System.Drawing.Size(137, 28);
- this.resetButton.TabIndex = 3;
- this.resetButton.Text = "Reset to Default";
- this.resetButton.UseVisualStyleBackColor = false;
- this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
- //
- // okButton
- //
- this.okButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
- this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.okButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
- this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.okButton.ForeColor = System.Drawing.Color.White;
- this.okButton.Location = new System.Drawing.Point(443, 48);
- this.okButton.Name = "okButton";
- this.okButton.Size = new System.Drawing.Size(100, 28);
- this.okButton.TabIndex = 1;
- this.okButton.Text = "OK";
- this.okButton.UseVisualStyleBackColor = false;
- //
- // cancelButton
- //
- this.cancelButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
- this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.cancelButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
- this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.cancelButton.ForeColor = System.Drawing.Color.White;
- this.cancelButton.Location = new System.Drawing.Point(549, 48);
- this.cancelButton.Name = "cancelButton";
- this.cancelButton.Size = new System.Drawing.Size(100, 28);
- this.cancelButton.TabIndex = 2;
- this.cancelButton.Text = "Cancel";
- this.cancelButton.UseVisualStyleBackColor = false;
- //
- // PrinterSettingsForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(7)))), ((int)(((byte)(63)))), ((int)(((byte)(145)))));
- this.ClientSize = new System.Drawing.Size(661, 83);
- this.ControlBox = false;
- this.Controls.Add(this.cancelButton);
- this.Controls.Add(this.okButton);
- this.Controls.Add(this.resetButton);
- this.Controls.Add(this.initStringTextBox);
- this.Controls.Add(this.label1);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "PrinterSettingsForm";
- this.Text = "Advanced Printer Settings";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PrinterSettingsForm_FormClosing);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox initStringTextBox;
- private System.Windows.Forms.Button resetButton;
- private System.Windows.Forms.Button okButton;
- private System.Windows.Forms.Button cancelButton;
- }
- }
|