PrinterList.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace UAS_Web
  2. {
  3. partial class PrinterList
  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.Printer = new System.Windows.Forms.ComboBox();
  29. this.Confirm = new System.Windows.Forms.Button();
  30. this.PrintFile = new System.Drawing.Printing.PrintDocument();
  31. this.PRXA = new System.Windows.Forms.RadioButton();
  32. this.PRPIC = new System.Windows.Forms.RadioButton();
  33. this.PRFR = new System.Windows.Forms.RadioButton();
  34. this.comboBox1 = new System.Windows.Forms.ComboBox();
  35. this.SuspendLayout();
  36. //
  37. // Printer
  38. //
  39. this.Printer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  40. this.Printer.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  41. this.Printer.FormattingEnabled = true;
  42. this.Printer.Location = new System.Drawing.Point(29, 38);
  43. this.Printer.Name = "Printer";
  44. this.Printer.Size = new System.Drawing.Size(268, 29);
  45. this.Printer.TabIndex = 0;
  46. //
  47. // Confirm
  48. //
  49. this.Confirm.Location = new System.Drawing.Point(125, 106);
  50. this.Confirm.Name = "Confirm";
  51. this.Confirm.Size = new System.Drawing.Size(75, 23);
  52. this.Confirm.TabIndex = 1;
  53. this.Confirm.Text = "确认";
  54. this.Confirm.UseVisualStyleBackColor = true;
  55. //
  56. // PRXA
  57. //
  58. this.PRXA.AutoSize = true;
  59. this.PRXA.Location = new System.Drawing.Point(29, 84);
  60. this.PRXA.Name = "PRXA";
  61. this.PRXA.Size = new System.Drawing.Size(71, 16);
  62. this.PRXA.TabIndex = 2;
  63. this.PRXA.Text = "指令打印";
  64. this.PRXA.UseVisualStyleBackColor = true;
  65. this.PRXA.Visible = false;
  66. //
  67. // PRPIC
  68. //
  69. this.PRPIC.AutoSize = true;
  70. this.PRPIC.Location = new System.Drawing.Point(125, 84);
  71. this.PRPIC.Name = "PRPIC";
  72. this.PRPIC.Size = new System.Drawing.Size(71, 16);
  73. this.PRPIC.TabIndex = 3;
  74. this.PRPIC.Text = "图片打印";
  75. this.PRPIC.UseVisualStyleBackColor = true;
  76. this.PRPIC.Visible = false;
  77. //
  78. // PRFR
  79. //
  80. this.PRFR.AutoSize = true;
  81. this.PRFR.Checked = true;
  82. this.PRFR.Location = new System.Drawing.Point(226, 84);
  83. this.PRFR.Name = "PRFR";
  84. this.PRFR.Size = new System.Drawing.Size(71, 16);
  85. this.PRFR.TabIndex = 4;
  86. this.PRFR.TabStop = true;
  87. this.PRFR.Text = "程序打印";
  88. this.PRFR.UseVisualStyleBackColor = true;
  89. this.PRFR.Visible = false;
  90. //
  91. // comboBox1
  92. //
  93. this.comboBox1.FormattingEnabled = true;
  94. this.comboBox1.Items.AddRange(new object[] {
  95. "1",
  96. "2",
  97. "3"});
  98. this.comboBox1.Location = new System.Drawing.Point(29, 109);
  99. this.comboBox1.Name = "comboBox1";
  100. this.comboBox1.Size = new System.Drawing.Size(67, 20);
  101. this.comboBox1.TabIndex = 5;
  102. //
  103. // PrinterList
  104. //
  105. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  106. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  107. this.ClientSize = new System.Drawing.Size(321, 170);
  108. this.Controls.Add(this.comboBox1);
  109. this.Controls.Add(this.PRFR);
  110. this.Controls.Add(this.PRPIC);
  111. this.Controls.Add(this.PRXA);
  112. this.Controls.Add(this.Confirm);
  113. this.Controls.Add(this.Printer);
  114. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  115. this.Name = "PrinterList";
  116. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  117. this.Text = "打印机列表";
  118. this.TopMost = true;
  119. this.Load += new System.EventHandler(this.PrinterList_Load);
  120. this.Shown += new System.EventHandler(this.PrinterList_Shown);
  121. this.ResumeLayout(false);
  122. this.PerformLayout();
  123. }
  124. #endregion
  125. private System.Windows.Forms.ComboBox Printer;
  126. private System.Windows.Forms.Button Confirm;
  127. private System.Drawing.Printing.PrintDocument PrintFile;
  128. private System.Windows.Forms.RadioButton PRXA;
  129. private System.Windows.Forms.RadioButton PRPIC;
  130. private System.Windows.Forms.RadioButton PRFR;
  131. private System.Windows.Forms.ComboBox comboBox1;
  132. }
  133. }