| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- namespace UAS_Web
- {
- partial class PrinterList
- {
- /// <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.Printer = new System.Windows.Forms.ComboBox();
- this.Confirm = new System.Windows.Forms.Button();
- this.PrintFile = new System.Drawing.Printing.PrintDocument();
- this.SuspendLayout();
- //
- // Printer
- //
- this.Printer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.Printer.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Printer.FormattingEnabled = true;
- this.Printer.Location = new System.Drawing.Point(29, 38);
- this.Printer.Name = "Printer";
- this.Printer.Size = new System.Drawing.Size(268, 29);
- this.Printer.TabIndex = 0;
- //
- // Confirm
- //
- this.Confirm.Location = new System.Drawing.Point(125, 106);
- this.Confirm.Name = "Confirm";
- this.Confirm.Size = new System.Drawing.Size(75, 23);
- this.Confirm.TabIndex = 1;
- this.Confirm.Text = "确认";
- this.Confirm.UseVisualStyleBackColor = true;
- //
- // PrinterList
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(321, 170);
- this.Controls.Add(this.Confirm);
- this.Controls.Add(this.Printer);
- this.Name = "PrinterList";
- this.Text = "打印机列表";
- this.Load += new System.EventHandler(this.PrinterList_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ComboBox Printer;
- private System.Windows.Forms.Button Confirm;
- private System.Drawing.Printing.PrintDocument PrintFile;
- }
- }
|