123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- namespace UAS_PRINT
- {
- 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.PRXA = new System.Windows.Forms.RadioButton();
- this.PRPIC = new System.Windows.Forms.RadioButton();
- this.PRFR = new System.Windows.Forms.RadioButton();
- 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;
- //
- // PRXA
- //
- this.PRXA.AutoSize = true;
- this.PRXA.Checked = true;
- this.PRXA.Location = new System.Drawing.Point(29, 84);
- this.PRXA.Name = "PRXA";
- this.PRXA.Size = new System.Drawing.Size(71, 16);
- this.PRXA.TabIndex = 2;
- this.PRXA.TabStop = true;
- this.PRXA.Text = "指令打印";
- this.PRXA.UseVisualStyleBackColor = true;
- //
- // PRPIC
- //
- this.PRPIC.AutoSize = true;
- this.PRPIC.Location = new System.Drawing.Point(125, 84);
- this.PRPIC.Name = "PRPIC";
- this.PRPIC.Size = new System.Drawing.Size(71, 16);
- this.PRPIC.TabIndex = 3;
- this.PRPIC.Text = "图片打印";
- this.PRPIC.UseVisualStyleBackColor = true;
- //
- // PRFR
- //
- this.PRFR.AutoSize = true;
- this.PRFR.Location = new System.Drawing.Point(226, 84);
- this.PRFR.Name = "PRFR";
- this.PRFR.Size = new System.Drawing.Size(71, 16);
- this.PRFR.TabIndex = 4;
- this.PRFR.TabStop = true;
- this.PRFR.Text = "程序打印";
- this.PRFR.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.PRFR);
- this.Controls.Add(this.PRPIC);
- this.Controls.Add(this.PRXA);
- this.Controls.Add(this.Confirm);
- this.Controls.Add(this.Printer);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
- this.Name = "PrinterList";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "打印机列表";
- this.TopMost = true;
- this.Load += new System.EventHandler(this.PrinterList_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ComboBox Printer;
- private System.Windows.Forms.Button Confirm;
- private System.Drawing.Printing.PrintDocument PrintFile;
- private System.Windows.Forms.RadioButton PRXA;
- private System.Windows.Forms.RadioButton PRPIC;
- private System.Windows.Forms.RadioButton PRFR;
- }
- }
|