PrinterList.Designer.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.SuspendLayout();
  32. //
  33. // Printer
  34. //
  35. this.Printer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  36. this.Printer.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  37. this.Printer.FormattingEnabled = true;
  38. this.Printer.Location = new System.Drawing.Point(29, 38);
  39. this.Printer.Name = "Printer";
  40. this.Printer.Size = new System.Drawing.Size(268, 29);
  41. this.Printer.TabIndex = 0;
  42. //
  43. // Confirm
  44. //
  45. this.Confirm.Location = new System.Drawing.Point(125, 106);
  46. this.Confirm.Name = "Confirm";
  47. this.Confirm.Size = new System.Drawing.Size(75, 23);
  48. this.Confirm.TabIndex = 1;
  49. this.Confirm.Text = "确认";
  50. this.Confirm.UseVisualStyleBackColor = true;
  51. //
  52. // PrinterList
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(321, 170);
  57. this.Controls.Add(this.Confirm);
  58. this.Controls.Add(this.Printer);
  59. this.Name = "PrinterList";
  60. this.Text = "打印机列表";
  61. this.Load += new System.EventHandler(this.PrinterList_Load);
  62. this.ResumeLayout(false);
  63. }
  64. #endregion
  65. private System.Windows.Forms.ComboBox Printer;
  66. private System.Windows.Forms.Button Confirm;
  67. private System.Drawing.Printing.PrintDocument PrintFile;
  68. }
  69. }