namespace SnapshotWinFormsApp; partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { OkBtn = new Button(); logTxt = new TextBox(); CancelBtn = new Button(); splitContainer1 = new SplitContainer(); tableLayoutPanel1 = new TableLayoutPanel(); ((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); tableLayoutPanel1.SuspendLayout(); SuspendLayout(); // // OkBtn // OkBtn.Location = new Point(3, 3); OkBtn.Name = "OkBtn"; OkBtn.Size = new Size(75, 23); OkBtn.TabIndex = 0; OkBtn.Text = "开始导入"; OkBtn.UseVisualStyleBackColor = true; OkBtn.Click += OkBtn_Click; // // logTxt // logTxt.BackColor = Color.Black; logTxt.BorderStyle = BorderStyle.None; logTxt.Dock = DockStyle.Fill; logTxt.Font = new Font("Courier New", 12F, FontStyle.Bold, GraphicsUnit.Point); logTxt.ForeColor = Color.LimeGreen; logTxt.Location = new Point(0, 0); logTxt.Multiline = true; logTxt.Name = "logTxt"; logTxt.ScrollBars = ScrollBars.Vertical; logTxt.Size = new Size(739, 526); logTxt.TabIndex = 1; // // CancelBtn // CancelBtn.Location = new Point(103, 3); CancelBtn.Name = "CancelBtn"; CancelBtn.Size = new Size(75, 23); CancelBtn.TabIndex = 0; CancelBtn.Text = "停止任务"; CancelBtn.UseVisualStyleBackColor = true; CancelBtn.Click += CancelBtn_Click; // // splitContainer1 // splitContainer1.Dock = DockStyle.Fill; splitContainer1.FixedPanel = FixedPanel.Panel1; splitContainer1.IsSplitterFixed = true; splitContainer1.Location = new Point(0, 0); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(tableLayoutPanel1); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(logTxt); splitContainer1.Panel2MinSize = 200; splitContainer1.Size = new Size(943, 526); splitContainer1.SplitterDistance = 200; splitContainer1.TabIndex = 2; // // tableLayoutPanel1 // tableLayoutPanel1.ColumnCount = 2; tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); tableLayoutPanel1.Controls.Add(OkBtn, 0, 0); tableLayoutPanel1.Controls.Add(CancelBtn, 1, 0); tableLayoutPanel1.Dock = DockStyle.Fill; tableLayoutPanel1.Location = new Point(0, 0); tableLayoutPanel1.Name = "tableLayoutPanel1"; tableLayoutPanel1.RowCount = 2; tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F)); tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F)); tableLayoutPanel1.Size = new Size(200, 526); tableLayoutPanel1.TabIndex = 1; // // MainForm // AcceptButton = OkBtn; AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(943, 526); Controls.Add(splitContainer1); Name = "MainForm"; StartPosition = FormStartPosition.CenterScreen; Text = "随手拍数据导入"; splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.Panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit(); splitContainer1.ResumeLayout(false); tableLayoutPanel1.ResumeLayout(false); ResumeLayout(false); } #endregion private Button OkBtn; private TextBox logTxt; private Button CancelBtn; private SplitContainer splitContainer1; private TableLayoutPanel tableLayoutPanel1; }