OTSMeasureOutputNlog.Designer.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. namespace OTSMeasureApp
  2. {
  3. partial class OTSMeasureOutputNlog
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.button_Test = new System.Windows.Forms.Button();
  31. this.button_stop = new System.Windows.Forms.Button();
  32. this.button_Clear = new System.Windows.Forms.Button();
  33. this.combox_NlogType = new System.Windows.Forms.ComboBox();
  34. this.richTextBox_Nlog = new System.Windows.Forms.RichTextBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  36. this.splitContainer1.Panel1.SuspendLayout();
  37. this.splitContainer1.Panel2.SuspendLayout();
  38. this.splitContainer1.SuspendLayout();
  39. this.panel1.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // splitContainer1
  43. //
  44. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  45. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  46. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  47. this.splitContainer1.Name = "splitContainer1";
  48. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  49. //
  50. // splitContainer1.Panel1
  51. //
  52. this.splitContainer1.Panel1.Controls.Add(this.panel1);
  53. //
  54. // splitContainer1.Panel2
  55. //
  56. this.splitContainer1.Panel2.Controls.Add(this.richTextBox_Nlog);
  57. this.splitContainer1.Size = new System.Drawing.Size(313, 290);
  58. this.splitContainer1.SplitterDistance = 25;
  59. this.splitContainer1.TabIndex = 14;
  60. //
  61. // panel1
  62. //
  63. this.panel1.Controls.Add(this.button_Test);
  64. this.panel1.Controls.Add(this.button_stop);
  65. this.panel1.Controls.Add(this.button_Clear);
  66. this.panel1.Controls.Add(this.combox_NlogType);
  67. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  68. this.panel1.Location = new System.Drawing.Point(0, 0);
  69. this.panel1.Name = "panel1";
  70. this.panel1.Size = new System.Drawing.Size(313, 25);
  71. this.panel1.TabIndex = 13;
  72. //
  73. // button_Test
  74. //
  75. this.button_Test.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  76. this.button_Test.Location = new System.Drawing.Point(109, 2);
  77. this.button_Test.Name = "button_Test";
  78. this.button_Test.Size = new System.Drawing.Size(63, 23);
  79. this.button_Test.TabIndex = 12;
  80. this.button_Test.Text = "Test";
  81. this.button_Test.UseVisualStyleBackColor = true;
  82. this.button_Test.Click += new System.EventHandler(this.button_Test_Click);
  83. //
  84. // button_stop
  85. //
  86. this.button_stop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  87. this.button_stop.Location = new System.Drawing.Point(178, 2);
  88. this.button_stop.Name = "button_stop";
  89. this.button_stop.Size = new System.Drawing.Size(63, 23);
  90. this.button_stop.TabIndex = 11;
  91. this.button_stop.Text = "Stop";
  92. this.button_stop.UseVisualStyleBackColor = true;
  93. this.button_stop.Click += new System.EventHandler(this.button_stop_Click);
  94. //
  95. // button_Clear
  96. //
  97. this.button_Clear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  98. this.button_Clear.Location = new System.Drawing.Point(247, 2);
  99. this.button_Clear.Name = "button_Clear";
  100. this.button_Clear.Size = new System.Drawing.Size(63, 23);
  101. this.button_Clear.TabIndex = 10;
  102. this.button_Clear.Text = "Clear";
  103. this.button_Clear.UseVisualStyleBackColor = true;
  104. this.button_Clear.Click += new System.EventHandler(this.button_Clear_Click);
  105. //
  106. // combox_NlogType
  107. //
  108. this.combox_NlogType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  109. this.combox_NlogType.FormattingEnabled = true;
  110. this.combox_NlogType.Location = new System.Drawing.Point(5, 5);
  111. this.combox_NlogType.Name = "combox_NlogType";
  112. this.combox_NlogType.Size = new System.Drawing.Size(88, 20);
  113. this.combox_NlogType.TabIndex = 8;
  114. this.combox_NlogType.SelectedIndexChanged += new System.EventHandler(this.combox_NlogType_SelectedIndexChanged);
  115. this.combox_NlogType.Click += new System.EventHandler(this.combox_NlogType_SelectedIndexChanged);
  116. //
  117. // richTextBox_Nlog
  118. //
  119. this.richTextBox_Nlog.Dock = System.Windows.Forms.DockStyle.Fill;
  120. this.richTextBox_Nlog.Location = new System.Drawing.Point(0, 0);
  121. this.richTextBox_Nlog.Name = "richTextBox_Nlog";
  122. this.richTextBox_Nlog.Size = new System.Drawing.Size(313, 261);
  123. this.richTextBox_Nlog.TabIndex = 0;
  124. this.richTextBox_Nlog.Text = "";
  125. //
  126. // OTSMeasureOutputNlog
  127. //
  128. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  129. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  130. this.ClientSize = new System.Drawing.Size(313, 290);
  131. this.CloseButton = false;
  132. this.CloseButtonVisible = false;
  133. this.Controls.Add(this.splitContainer1);
  134. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  135. this.MaximizeBox = false;
  136. this.MinimizeBox = false;
  137. this.Name = "OTSMeasureOutputNlog";
  138. this.ShowIcon = false;
  139. this.ShowInTaskbar = false;
  140. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  141. this.Text = "Log";
  142. this.Load += new System.EventHandler(this.OTSMeasureOutputNlog_Load);
  143. this.Click += new System.EventHandler(this.button_Test_Click);
  144. this.splitContainer1.Panel1.ResumeLayout(false);
  145. this.splitContainer1.Panel2.ResumeLayout(false);
  146. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  147. this.splitContainer1.ResumeLayout(false);
  148. this.panel1.ResumeLayout(false);
  149. this.ResumeLayout(false);
  150. }
  151. #endregion
  152. private System.Windows.Forms.SplitContainer splitContainer1;
  153. private System.Windows.Forms.Panel panel1;
  154. private System.Windows.Forms.Button button_stop;
  155. private System.Windows.Forms.Button button_Clear;
  156. private System.Windows.Forms.ComboBox combox_NlogType;
  157. private System.Windows.Forms.RichTextBox richTextBox_Nlog;
  158. private System.Windows.Forms.Button button_Test;
  159. }
  160. }