FormChat.Designer.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. namespace XmdsBattleClientWin32.Func
  2. {
  3. partial class FormChat
  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.textSending = new System.Windows.Forms.TextBox();
  29. this.btnSend = new System.Windows.Forms.Button();
  30. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  31. this.tabControl1 = new System.Windows.Forms.TabControl();
  32. this.tabPageAll = new System.Windows.Forms.TabPage();
  33. this.richTextBoxAll = new System.Windows.Forms.RichTextBox();
  34. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  35. this.sendStatus = new System.Windows.Forms.ToolStripStatusLabel();
  36. this.comboChannel = new System.Windows.Forms.ComboBox();
  37. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  38. this.splitContainer1.Panel1.SuspendLayout();
  39. this.splitContainer1.Panel2.SuspendLayout();
  40. this.splitContainer1.SuspendLayout();
  41. this.tabControl1.SuspendLayout();
  42. this.tabPageAll.SuspendLayout();
  43. this.statusStrip1.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // textSending
  47. //
  48. this.textSending.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  49. | System.Windows.Forms.AnchorStyles.Right)));
  50. this.textSending.ImeMode = System.Windows.Forms.ImeMode.On;
  51. this.textSending.Location = new System.Drawing.Point(139, 34);
  52. this.textSending.Name = "textSending";
  53. this.textSending.Size = new System.Drawing.Size(769, 21);
  54. this.textSending.TabIndex = 0;
  55. //
  56. // btnSend
  57. //
  58. this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  59. this.btnSend.Location = new System.Drawing.Point(914, 32);
  60. this.btnSend.Name = "btnSend";
  61. this.btnSend.Size = new System.Drawing.Size(75, 23);
  62. this.btnSend.TabIndex = 1;
  63. this.btnSend.Text = "Send";
  64. this.btnSend.UseVisualStyleBackColor = true;
  65. this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
  66. //
  67. // splitContainer1
  68. //
  69. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  70. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  71. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  72. this.splitContainer1.Name = "splitContainer1";
  73. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  74. //
  75. // splitContainer1.Panel1
  76. //
  77. this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
  78. //
  79. // splitContainer1.Panel2
  80. //
  81. this.splitContainer1.Panel2.Controls.Add(this.statusStrip1);
  82. this.splitContainer1.Panel2.Controls.Add(this.comboChannel);
  83. this.splitContainer1.Panel2.Controls.Add(this.btnSend);
  84. this.splitContainer1.Panel2.Controls.Add(this.textSending);
  85. this.splitContainer1.Size = new System.Drawing.Size(1006, 511);
  86. this.splitContainer1.SplitterDistance = 419;
  87. this.splitContainer1.TabIndex = 2;
  88. //
  89. // tabControl1
  90. //
  91. this.tabControl1.Controls.Add(this.tabPageAll);
  92. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  93. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  94. this.tabControl1.Multiline = true;
  95. this.tabControl1.Name = "tabControl1";
  96. this.tabControl1.SelectedIndex = 0;
  97. this.tabControl1.Size = new System.Drawing.Size(1006, 419);
  98. this.tabControl1.TabIndex = 0;
  99. //
  100. // tabPageAll
  101. //
  102. this.tabPageAll.Controls.Add(this.richTextBoxAll);
  103. this.tabPageAll.Location = new System.Drawing.Point(4, 22);
  104. this.tabPageAll.Name = "tabPageAll";
  105. this.tabPageAll.Padding = new System.Windows.Forms.Padding(3);
  106. this.tabPageAll.Size = new System.Drawing.Size(998, 393);
  107. this.tabPageAll.TabIndex = 0;
  108. this.tabPageAll.Text = "全部";
  109. this.tabPageAll.UseVisualStyleBackColor = true;
  110. //
  111. // richTextBoxAll
  112. //
  113. this.richTextBoxAll.Dock = System.Windows.Forms.DockStyle.Fill;
  114. this.richTextBoxAll.Location = new System.Drawing.Point(3, 3);
  115. this.richTextBoxAll.Name = "richTextBoxAll";
  116. this.richTextBoxAll.ReadOnly = true;
  117. this.richTextBoxAll.Size = new System.Drawing.Size(992, 387);
  118. this.richTextBoxAll.TabIndex = 0;
  119. this.richTextBoxAll.Text = "";
  120. //
  121. // statusStrip1
  122. //
  123. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  124. this.sendStatus});
  125. this.statusStrip1.Location = new System.Drawing.Point(0, 66);
  126. this.statusStrip1.Name = "statusStrip1";
  127. this.statusStrip1.Size = new System.Drawing.Size(1006, 22);
  128. this.statusStrip1.TabIndex = 3;
  129. this.statusStrip1.Text = "statusStrip1";
  130. //
  131. // sendStatus
  132. //
  133. this.sendStatus.Name = "sendStatus";
  134. this.sendStatus.Size = new System.Drawing.Size(23, 17);
  135. this.sendStatus.Text = "ok";
  136. //
  137. // comboChannel
  138. //
  139. this.comboChannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  140. this.comboChannel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  141. this.comboChannel.FormattingEnabled = true;
  142. this.comboChannel.Location = new System.Drawing.Point(12, 34);
  143. this.comboChannel.Name = "comboChannel";
  144. this.comboChannel.Size = new System.Drawing.Size(121, 20);
  145. this.comboChannel.TabIndex = 2;
  146. //
  147. // FormChat
  148. //
  149. this.AcceptButton = this.btnSend;
  150. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  151. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  152. this.ClientSize = new System.Drawing.Size(1006, 511);
  153. this.Controls.Add(this.splitContainer1);
  154. this.Name = "FormChat";
  155. this.ShowIcon = false;
  156. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  157. this.Text = "FormChat";
  158. this.splitContainer1.Panel1.ResumeLayout(false);
  159. this.splitContainer1.Panel2.ResumeLayout(false);
  160. this.splitContainer1.Panel2.PerformLayout();
  161. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  162. this.splitContainer1.ResumeLayout(false);
  163. this.tabControl1.ResumeLayout(false);
  164. this.tabPageAll.ResumeLayout(false);
  165. this.statusStrip1.ResumeLayout(false);
  166. this.statusStrip1.PerformLayout();
  167. this.ResumeLayout(false);
  168. }
  169. #endregion
  170. private System.Windows.Forms.Button btnSend;
  171. private System.Windows.Forms.TextBox textSending;
  172. private System.Windows.Forms.SplitContainer splitContainer1;
  173. private System.Windows.Forms.ComboBox comboChannel;
  174. private System.Windows.Forms.TabControl tabControl1;
  175. private System.Windows.Forms.TabPage tabPageAll;
  176. private System.Windows.Forms.RichTextBox richTextBoxAll;
  177. private System.Windows.Forms.StatusStrip statusStrip1;
  178. private System.Windows.Forms.ToolStripStatusLabel sendStatus;
  179. }
  180. }