namespace Bro.M141.Process
|
{
|
partial class UIPrinter
|
{
|
/// <summary>
|
/// 必需的设计器变量。
|
/// </summary>
|
private System.ComponentModel.IContainer components = null;
|
|
/// <summary>
|
/// 清理所有正在使用的资源。
|
/// </summary>
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
protected override void Dispose(bool disposing)
|
{
|
if (disposing && (components != null))
|
{
|
components.Dispose();
|
}
|
base.Dispose(disposing);
|
}
|
|
#region 组件设计器生成的代码
|
|
/// <summary>
|
/// 设计器支持所需的方法 - 不要修改
|
/// 使用代码编辑器修改此方法的内容。
|
/// </summary>
|
private void InitializeComponent()
|
{
|
button2 = new Button();
|
button1 = new Button();
|
textBox1 = new TextBox();
|
label1 = new Label();
|
SuspendLayout();
|
//
|
// button2
|
//
|
button2.Location = new Point(180, 90);
|
button2.Name = "button2";
|
button2.Size = new Size(108, 60);
|
button2.TabIndex = 1;
|
button2.Text = "预览";
|
button2.UseVisualStyleBackColor = true;
|
button2.Click += button2_Click;
|
//
|
// button1
|
//
|
button1.Location = new Point(32, 90);
|
button1.Name = "button1";
|
button1.Size = new Size(108, 60);
|
button1.TabIndex = 2;
|
button1.Text = "打印";
|
button1.UseVisualStyleBackColor = true;
|
button1.Click += button1_Click;
|
//
|
// textBox1
|
//
|
textBox1.Location = new Point(113, 35);
|
textBox1.Name = "textBox1";
|
textBox1.Size = new Size(175, 23);
|
textBox1.TabIndex = 3;
|
//
|
// label1
|
//
|
label1.AutoSize = true;
|
label1.Location = new Point(52, 38);
|
label1.Name = "label1";
|
label1.Size = new Size(56, 17);
|
label1.TabIndex = 4;
|
label1.Text = "打印内容";
|
//
|
// UIPrinter
|
//
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
AutoScaleMode = AutoScaleMode.Font;
|
Controls.Add(label1);
|
Controls.Add(textBox1);
|
Controls.Add(button1);
|
Controls.Add(button2);
|
Margin = new Padding(2, 3, 2, 3);
|
Name = "UIPrinter";
|
Size = new Size(356, 362);
|
ResumeLayout(false);
|
PerformLayout();
|
}
|
|
#endregion
|
|
private Button button2;
|
private Button button1;
|
private TextBox textBox1;
|
private Label label1;
|
}
|
}
|