You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
5.1 KiB
C#
139 lines
5.1 KiB
C#
namespace PrintBarCode
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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()
|
|
{
|
|
label1 = new Label();
|
|
logList = new ListBox();
|
|
label2 = new Label();
|
|
button1 = new Button();
|
|
label3 = new Label();
|
|
BlankFlag = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Font = new Font("Microsoft YaHei UI", 26.25F, FontStyle.Bold, GraphicsUnit.Point);
|
|
label1.ForeColor = SystemColors.MenuHighlight;
|
|
label1.Location = new Point(664, 19);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(230, 46);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "打印条码服务";
|
|
//
|
|
// logList
|
|
//
|
|
logList.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
logList.BackColor = Color.Gainsboro;
|
|
logList.Font = new Font("Microsoft YaHei UI", 14.25F, FontStyle.Bold, GraphicsUnit.Point);
|
|
logList.ForeColor = Color.ForestGreen;
|
|
logList.FormattingEnabled = true;
|
|
logList.HorizontalScrollbar = true;
|
|
logList.ItemHeight = 26;
|
|
logList.Location = new Point(0, 157);
|
|
logList.Name = "logList";
|
|
logList.Size = new Size(1454, 680);
|
|
logList.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Font = new Font("Microsoft YaHei UI", 15.75F, FontStyle.Bold, GraphicsUnit.Point);
|
|
label2.ForeColor = SystemColors.HotTrack;
|
|
label2.Location = new Point(12, 85);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(117, 28);
|
|
label2.TabIndex = 2;
|
|
label2.Text = "打印日志:";
|
|
//
|
|
// button1
|
|
//
|
|
button1.BackColor = Color.MediumAquamarine;
|
|
button1.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|
button1.Location = new Point(1257, 113);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(83, 38);
|
|
button1.TabIndex = 3;
|
|
button1.Text = "修 改";
|
|
button1.UseVisualStyleBackColor = false;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.BackColor = SystemColors.ActiveCaption;
|
|
label3.Font = new Font("Microsoft YaHei UI", 15F, FontStyle.Bold, GraphicsUnit.Point);
|
|
label3.ForeColor = Color.Green;
|
|
label3.Location = new Point(1006, 118);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(198, 27);
|
|
label3.TabIndex = 4;
|
|
label3.Text = "结束是否打印空白页:";
|
|
//
|
|
// BlankFlag
|
|
//
|
|
BlankFlag.AutoSize = true;
|
|
BlankFlag.Font = new Font("Microsoft YaHei UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
|
|
BlankFlag.ForeColor = Color.Blue;
|
|
BlankFlag.Location = new Point(1210, 119);
|
|
BlankFlag.Name = "BlankFlag";
|
|
BlankFlag.Size = new Size(0, 25);
|
|
BlankFlag.TabIndex = 5;
|
|
//
|
|
// MainForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = SystemColors.ActiveCaption;
|
|
ClientSize = new Size(1454, 837);
|
|
Controls.Add(BlankFlag);
|
|
Controls.Add(label3);
|
|
Controls.Add(button1);
|
|
Controls.Add(label2);
|
|
Controls.Add(logList);
|
|
Controls.Add(label1);
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
Name = "MainForm";
|
|
SizeGripStyle = SizeGripStyle.Hide;
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "打印条码服务";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private ListBox logList;
|
|
private Label label2;
|
|
private Button button1;
|
|
private Label label3;
|
|
private Label BlankFlag;
|
|
}
|
|
} |