MainForm.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace SnapshotWinFormsApp;
  2. partial class MainForm
  3. {
  4. /// <summary>
  5. /// Required designer variable.
  6. /// </summary>
  7. private System.ComponentModel.IContainer components = null;
  8. /// <summary>
  9. /// Clean up any resources being used.
  10. /// </summary>
  11. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  12. protected override void Dispose(bool disposing)
  13. {
  14. if (disposing && (components != null))
  15. {
  16. components.Dispose();
  17. }
  18. base.Dispose(disposing);
  19. }
  20. #region Windows Form Designer generated code
  21. /// <summary>
  22. /// Required method for Designer support - do not modify
  23. /// the contents of this method with the code editor.
  24. /// </summary>
  25. private void InitializeComponent()
  26. {
  27. OkBtn = new Button();
  28. logTxt = new TextBox();
  29. CancelBtn = new Button();
  30. splitContainer1 = new SplitContainer();
  31. tableLayoutPanel1 = new TableLayoutPanel();
  32. ((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
  33. splitContainer1.Panel1.SuspendLayout();
  34. splitContainer1.Panel2.SuspendLayout();
  35. splitContainer1.SuspendLayout();
  36. tableLayoutPanel1.SuspendLayout();
  37. SuspendLayout();
  38. //
  39. // OkBtn
  40. //
  41. OkBtn.Location = new Point(3, 3);
  42. OkBtn.Name = "OkBtn";
  43. OkBtn.Size = new Size(75, 23);
  44. OkBtn.TabIndex = 0;
  45. OkBtn.Text = "开始导入";
  46. OkBtn.UseVisualStyleBackColor = true;
  47. OkBtn.Click += OkBtn_Click;
  48. //
  49. // logTxt
  50. //
  51. logTxt.BackColor = Color.Black;
  52. logTxt.BorderStyle = BorderStyle.None;
  53. logTxt.Dock = DockStyle.Fill;
  54. logTxt.Font = new Font("Courier New", 12F, FontStyle.Bold, GraphicsUnit.Point);
  55. logTxt.ForeColor = Color.LimeGreen;
  56. logTxt.Location = new Point(0, 0);
  57. logTxt.Multiline = true;
  58. logTxt.Name = "logTxt";
  59. logTxt.ScrollBars = ScrollBars.Vertical;
  60. logTxt.Size = new Size(739, 526);
  61. logTxt.TabIndex = 1;
  62. //
  63. // CancelBtn
  64. //
  65. CancelBtn.Location = new Point(103, 3);
  66. CancelBtn.Name = "CancelBtn";
  67. CancelBtn.Size = new Size(75, 23);
  68. CancelBtn.TabIndex = 0;
  69. CancelBtn.Text = "停止任务";
  70. CancelBtn.UseVisualStyleBackColor = true;
  71. CancelBtn.Click += CancelBtn_Click;
  72. //
  73. // splitContainer1
  74. //
  75. splitContainer1.Dock = DockStyle.Fill;
  76. splitContainer1.FixedPanel = FixedPanel.Panel1;
  77. splitContainer1.IsSplitterFixed = true;
  78. splitContainer1.Location = new Point(0, 0);
  79. splitContainer1.Name = "splitContainer1";
  80. //
  81. // splitContainer1.Panel1
  82. //
  83. splitContainer1.Panel1.Controls.Add(tableLayoutPanel1);
  84. //
  85. // splitContainer1.Panel2
  86. //
  87. splitContainer1.Panel2.Controls.Add(logTxt);
  88. splitContainer1.Panel2MinSize = 200;
  89. splitContainer1.Size = new Size(943, 526);
  90. splitContainer1.SplitterDistance = 200;
  91. splitContainer1.TabIndex = 2;
  92. //
  93. // tableLayoutPanel1
  94. //
  95. tableLayoutPanel1.ColumnCount = 2;
  96. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
  97. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
  98. tableLayoutPanel1.Controls.Add(OkBtn, 0, 0);
  99. tableLayoutPanel1.Controls.Add(CancelBtn, 1, 0);
  100. tableLayoutPanel1.Dock = DockStyle.Fill;
  101. tableLayoutPanel1.Location = new Point(0, 0);
  102. tableLayoutPanel1.Name = "tableLayoutPanel1";
  103. tableLayoutPanel1.RowCount = 2;
  104. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  105. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  106. tableLayoutPanel1.Size = new Size(200, 526);
  107. tableLayoutPanel1.TabIndex = 1;
  108. //
  109. // MainForm
  110. //
  111. AcceptButton = OkBtn;
  112. AutoScaleDimensions = new SizeF(7F, 15F);
  113. AutoScaleMode = AutoScaleMode.Font;
  114. ClientSize = new Size(943, 526);
  115. Controls.Add(splitContainer1);
  116. Name = "MainForm";
  117. StartPosition = FormStartPosition.CenterScreen;
  118. Text = "随手拍数据导入";
  119. splitContainer1.Panel1.ResumeLayout(false);
  120. splitContainer1.Panel2.ResumeLayout(false);
  121. splitContainer1.Panel2.PerformLayout();
  122. ((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
  123. splitContainer1.ResumeLayout(false);
  124. tableLayoutPanel1.ResumeLayout(false);
  125. ResumeLayout(false);
  126. }
  127. #endregion
  128. private Button OkBtn;
  129. private TextBox logTxt;
  130. private Button CancelBtn;
  131. private SplitContainer splitContainer1;
  132. private TableLayoutPanel tableLayoutPanel1;
  133. }