Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. namespace ChatClient
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.textBox2 = new System.Windows.Forms.TextBox();
  33. this.textBox3 = new System.Windows.Forms.TextBox();
  34. this.listBox1 = new System.Windows.Forms.ListBox();
  35. this.listBox2 = new System.Windows.Forms.ListBox();
  36. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  37. this.loginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.loginToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  39. this.connectToServerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.creditsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.menuStrip1.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(234, 566);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(656, 20);
  49. this.textBox1.TabIndex = 0;
  50. //
  51. // textBox2
  52. //
  53. this.textBox2.Location = new System.Drawing.Point(234, 53);
  54. this.textBox2.Multiline = true;
  55. this.textBox2.Name = "textBox2";
  56. this.textBox2.Size = new System.Drawing.Size(656, 507);
  57. this.textBox2.TabIndex = 1;
  58. //
  59. // textBox3
  60. //
  61. this.textBox3.Location = new System.Drawing.Point(234, 27);
  62. this.textBox3.Name = "textBox3";
  63. this.textBox3.Size = new System.Drawing.Size(656, 20);
  64. this.textBox3.TabIndex = 2;
  65. //
  66. // listBox1
  67. //
  68. this.listBox1.FormattingEnabled = true;
  69. this.listBox1.Location = new System.Drawing.Point(13, 25);
  70. this.listBox1.Name = "listBox1";
  71. this.listBox1.Size = new System.Drawing.Size(215, 199);
  72. this.listBox1.TabIndex = 5;
  73. //
  74. // listBox2
  75. //
  76. this.listBox2.FormattingEnabled = true;
  77. this.listBox2.Location = new System.Drawing.Point(13, 231);
  78. this.listBox2.Name = "listBox2";
  79. this.listBox2.Size = new System.Drawing.Size(215, 355);
  80. this.listBox2.TabIndex = 6;
  81. //
  82. // menuStrip1
  83. //
  84. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  85. this.loginToolStripMenuItem,
  86. this.creditsToolStripMenuItem});
  87. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  88. this.menuStrip1.Name = "menuStrip1";
  89. this.menuStrip1.Size = new System.Drawing.Size(902, 24);
  90. this.menuStrip1.TabIndex = 7;
  91. this.menuStrip1.Text = "menuStrip1";
  92. //
  93. // loginToolStripMenuItem
  94. //
  95. this.loginToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  96. this.loginToolStripMenuItem1,
  97. this.connectToServerToolStripMenuItem});
  98. this.loginToolStripMenuItem.Name = "loginToolStripMenuItem";
  99. this.loginToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
  100. this.loginToolStripMenuItem.Text = "Menu";
  101. this.loginToolStripMenuItem.Click += new System.EventHandler(this.loginToolStripMenuItem_Click);
  102. //
  103. // loginToolStripMenuItem1
  104. //
  105. this.loginToolStripMenuItem1.Name = "loginToolStripMenuItem1";
  106. this.loginToolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
  107. this.loginToolStripMenuItem1.Text = "Login";
  108. //
  109. // connectToServerToolStripMenuItem
  110. //
  111. this.connectToServerToolStripMenuItem.Name = "connectToServerToolStripMenuItem";
  112. this.connectToServerToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  113. this.connectToServerToolStripMenuItem.Text = "Connect to server";
  114. //
  115. // creditsToolStripMenuItem
  116. //
  117. this.creditsToolStripMenuItem.Name = "creditsToolStripMenuItem";
  118. this.creditsToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  119. this.creditsToolStripMenuItem.Text = "Credits";
  120. //
  121. // Form1
  122. //
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.ClientSize = new System.Drawing.Size(902, 597);
  126. this.Controls.Add(this.listBox2);
  127. this.Controls.Add(this.listBox1);
  128. this.Controls.Add(this.textBox3);
  129. this.Controls.Add(this.textBox2);
  130. this.Controls.Add(this.textBox1);
  131. this.Controls.Add(this.menuStrip1);
  132. this.MainMenuStrip = this.menuStrip1;
  133. this.Name = "Form1";
  134. this.Text = "Form1";
  135. this.menuStrip1.ResumeLayout(false);
  136. this.menuStrip1.PerformLayout();
  137. this.ResumeLayout(false);
  138. this.PerformLayout();
  139.  
  140. }
  141.  
  142. #endregion
  143.  
  144. private System.Windows.Forms.TextBox textBox1;
  145. private System.Windows.Forms.TextBox textBox2;
  146. private System.Windows.Forms.TextBox textBox3;
  147. private System.Windows.Forms.ListBox listBox1;
  148. private System.Windows.Forms.ListBox listBox2;
  149. private System.Windows.Forms.MenuStrip menuStrip1;
  150. private System.Windows.Forms.ToolStripMenuItem loginToolStripMenuItem;
  151. private System.Windows.Forms.ToolStripMenuItem loginToolStripMenuItem1;
  152. private System.Windows.Forms.ToolStripMenuItem connectToServerToolStripMenuItem;
  153. private System.Windows.Forms.ToolStripMenuItem creditsToolStripMenuItem;
  154. }
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement