Nav apraksta

PrinterSettingsForm.Designer.cs 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. namespace BulkPrinting
  2. {
  3. partial class PrinterSettingsForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.initStringTextBox = new System.Windows.Forms.TextBox();
  30. this.resetButton = new System.Windows.Forms.Button();
  31. this.okButton = new System.Windows.Forms.Button();
  32. this.cancelButton = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.ForeColor = System.Drawing.Color.White;
  39. this.label1.Location = new System.Drawing.Point(13, 13);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(155, 17);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "Printer Init String (Hex):";
  44. //
  45. // initStringTextBox
  46. //
  47. this.initStringTextBox.Location = new System.Drawing.Point(174, 13);
  48. this.initStringTextBox.Name = "initStringTextBox";
  49. this.initStringTextBox.Size = new System.Drawing.Size(475, 22);
  50. this.initStringTextBox.TabIndex = 0;
  51. //
  52. // resetButton
  53. //
  54. this.resetButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  55. this.resetButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  56. this.resetButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  57. this.resetButton.ForeColor = System.Drawing.Color.White;
  58. this.resetButton.Location = new System.Drawing.Point(13, 48);
  59. this.resetButton.Name = "resetButton";
  60. this.resetButton.Size = new System.Drawing.Size(137, 28);
  61. this.resetButton.TabIndex = 3;
  62. this.resetButton.Text = "Reset to Default";
  63. this.resetButton.UseVisualStyleBackColor = false;
  64. this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
  65. //
  66. // okButton
  67. //
  68. this.okButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  69. this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
  70. this.okButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  71. this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  72. this.okButton.ForeColor = System.Drawing.Color.White;
  73. this.okButton.Location = new System.Drawing.Point(443, 48);
  74. this.okButton.Name = "okButton";
  75. this.okButton.Size = new System.Drawing.Size(100, 28);
  76. this.okButton.TabIndex = 1;
  77. this.okButton.Text = "OK";
  78. this.okButton.UseVisualStyleBackColor = false;
  79. //
  80. // cancelButton
  81. //
  82. this.cancelButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  83. this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  84. this.cancelButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  85. this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  86. this.cancelButton.ForeColor = System.Drawing.Color.White;
  87. this.cancelButton.Location = new System.Drawing.Point(549, 48);
  88. this.cancelButton.Name = "cancelButton";
  89. this.cancelButton.Size = new System.Drawing.Size(100, 28);
  90. this.cancelButton.TabIndex = 2;
  91. this.cancelButton.Text = "Cancel";
  92. this.cancelButton.UseVisualStyleBackColor = false;
  93. //
  94. // PrinterSettingsForm
  95. //
  96. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  97. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  98. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(7)))), ((int)(((byte)(63)))), ((int)(((byte)(145)))));
  99. this.ClientSize = new System.Drawing.Size(661, 83);
  100. this.ControlBox = false;
  101. this.Controls.Add(this.cancelButton);
  102. this.Controls.Add(this.okButton);
  103. this.Controls.Add(this.resetButton);
  104. this.Controls.Add(this.initStringTextBox);
  105. this.Controls.Add(this.label1);
  106. this.MaximizeBox = false;
  107. this.MinimizeBox = false;
  108. this.Name = "PrinterSettingsForm";
  109. this.Text = "Advanced Printer Settings";
  110. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PrinterSettingsForm_FormClosing);
  111. this.ResumeLayout(false);
  112. this.PerformLayout();
  113. }
  114. #endregion
  115. private System.Windows.Forms.Label label1;
  116. private System.Windows.Forms.TextBox initStringTextBox;
  117. private System.Windows.Forms.Button resetButton;
  118. private System.Windows.Forms.Button okButton;
  119. private System.Windows.Forms.Button cancelButton;
  120. }
  121. }