Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.65 KB | None | 0 0
  1. namespace Pop3Check
  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.button1 = new System.Windows.Forms.Button();
  32. this.txtPort = new System.Windows.Forms.TextBox();
  33. this.txtPass = new System.Windows.Forms.TextBox();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.txtUser = new System.Windows.Forms.TextBox();
  39. this.btnConnect = new System.Windows.Forms.Button();
  40. this.btnCreateLetter = new System.Windows.Forms.Button();
  41. this.cmbServer = new System.Windows.Forms.ComboBox();
  42. this.label6 = new System.Windows.Forms.Label();
  43. this.label5 = new System.Windows.Forms.Label();
  44. this.groupBox1 = new System.Windows.Forms.GroupBox();
  45. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  46. this.listBox1 = new System.Windows.Forms.ListBox();
  47. this.textBox1 = new System.Windows.Forms.TextBox();
  48. this.groupBox1.SuspendLayout();
  49. this.splitContainer1.Panel1.SuspendLayout();
  50. this.splitContainer1.Panel2.SuspendLayout();
  51. this.splitContainer1.SuspendLayout();
  52. this.SuspendLayout();
  53. //
  54. // button1
  55. //
  56. this.button1.Location = new System.Drawing.Point(-66, -29);
  57. this.button1.Name = "button1";
  58. this.button1.Size = new System.Drawing.Size(75, 23);
  59. this.button1.TabIndex = 0;
  60. this.button1.Text = "button1";
  61. this.button1.UseVisualStyleBackColor = true;
  62. //
  63. // txtPort
  64. //
  65. this.txtPort.Location = new System.Drawing.Point(223, 10);
  66. this.txtPort.Name = "txtPort";
  67. this.txtPort.Size = new System.Drawing.Size(57, 20);
  68. this.txtPort.TabIndex = 6;
  69. this.txtPort.Text = "110";
  70. //
  71. // txtPass
  72. //
  73. this.txtPass.Location = new System.Drawing.Point(223, 36);
  74. this.txtPass.Name = "txtPass";
  75. this.txtPass.PasswordChar = '*';
  76. this.txtPass.Size = new System.Drawing.Size(57, 20);
  77. this.txtPass.TabIndex = 3;
  78. this.txtPass.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtPass_KeyUp);
  79. //
  80. // label1
  81. //
  82. this.label1.AutoSize = true;
  83. this.label1.Location = new System.Drawing.Point(12, 9);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(44, 13);
  86. this.label1.TabIndex = 4;
  87. this.label1.Text = "Сервер";
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Location = new System.Drawing.Point(172, 10);
  93. this.label2.Name = "label2";
  94. this.label2.Size = new System.Drawing.Size(32, 13);
  95. this.label2.TabIndex = 5;
  96. this.label2.Text = "Порт";
  97. //
  98. // label3
  99. //
  100. this.label3.AutoSize = true;
  101. this.label3.Location = new System.Drawing.Point(12, 36);
  102. this.label3.Name = "label3";
  103. this.label3.Size = new System.Drawing.Size(38, 13);
  104. this.label3.TabIndex = 6;
  105. this.label3.Text = "Логин";
  106. //
  107. // label4
  108. //
  109. this.label4.AutoSize = true;
  110. this.label4.Location = new System.Drawing.Point(172, 36);
  111. this.label4.Name = "label4";
  112. this.label4.Size = new System.Drawing.Size(45, 13);
  113. this.label4.TabIndex = 7;
  114. this.label4.Text = "Пароль";
  115. //
  116. // txtUser
  117. //
  118. this.txtUser.Location = new System.Drawing.Point(62, 36);
  119. this.txtUser.Name = "txtUser";
  120. this.txtUser.Size = new System.Drawing.Size(104, 20);
  121. this.txtUser.TabIndex = 2;
  122. this.txtUser.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtUser_KeyUp);
  123. //
  124. // btnConnect
  125. //
  126. this.btnConnect.Location = new System.Drawing.Point(12, 62);
  127. this.btnConnect.Name = "btnConnect";
  128. this.btnConnect.Size = new System.Drawing.Size(85, 28);
  129. this.btnConnect.TabIndex = 4;
  130. this.btnConnect.Text = "Вход в почту";
  131. this.btnConnect.UseVisualStyleBackColor = true;
  132. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  133. //
  134. // btnCreateLetter
  135. //
  136. this.btnCreateLetter.Location = new System.Drawing.Point(104, 62);
  137. this.btnCreateLetter.Name = "btnCreateLetter";
  138. this.btnCreateLetter.Size = new System.Drawing.Size(99, 28);
  139. this.btnCreateLetter.TabIndex = 7;
  140. this.btnCreateLetter.Text = "Создать письмо";
  141. this.btnCreateLetter.UseVisualStyleBackColor = true;
  142. this.btnCreateLetter.Click += new System.EventHandler(this.btnCreateLetter_Click);
  143. //
  144. // cmbServer
  145. //
  146. this.cmbServer.FormattingEnabled = true;
  147. this.cmbServer.Location = new System.Drawing.Point(62, 9);
  148. this.cmbServer.Name = "cmbServer";
  149. this.cmbServer.Size = new System.Drawing.Size(100, 21);
  150. this.cmbServer.TabIndex = 1;
  151. this.cmbServer.SelectedIndexChanged += new System.EventHandler(this.cmbServer_SelectedIndexChanged);
  152. //
  153. // label6
  154. //
  155. this.label6.AutoSize = true;
  156. this.label6.Location = new System.Drawing.Point(261, 93);
  157. this.label6.Name = "label6";
  158. this.label6.Size = new System.Drawing.Size(78, 13);
  159. this.label6.TabIndex = 9;
  160. this.label6.Text = "Текст письма";
  161. //
  162. // label5
  163. //
  164. this.label5.AutoSize = true;
  165. this.label5.Location = new System.Drawing.Point(9, 93);
  166. this.label5.Name = "label5";
  167. this.label5.Size = new System.Drawing.Size(79, 13);
  168. this.label5.TabIndex = 15;
  169. this.label5.Text = "Список писем";
  170. //
  171. // groupBox1
  172. //
  173. this.groupBox1.Controls.Add(this.splitContainer1);
  174. this.groupBox1.Location = new System.Drawing.Point(2, 109);
  175. this.groupBox1.Name = "groupBox1";
  176. this.groupBox1.Size = new System.Drawing.Size(544, 323);
  177. this.groupBox1.TabIndex = 19;
  178. this.groupBox1.TabStop = false;
  179. //
  180. // splitContainer1
  181. //
  182. this.splitContainer1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  183. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  184. this.splitContainer1.Location = new System.Drawing.Point(3, 16);
  185. this.splitContainer1.Name = "splitContainer1";
  186. //
  187. // splitContainer1.Panel1
  188. //
  189. this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control;
  190. this.splitContainer1.Panel1.Controls.Add(this.listBox1);
  191. //
  192. // splitContainer1.Panel2
  193. //
  194. this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control;
  195. this.splitContainer1.Panel2.Controls.Add(this.textBox1);
  196. this.splitContainer1.Size = new System.Drawing.Size(538, 304);
  197. this.splitContainer1.SplitterDistance = 255;
  198. this.splitContainer1.TabIndex = 19;
  199. //
  200. // listBox1
  201. //
  202. this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  203. this.listBox1.FormattingEnabled = true;
  204. this.listBox1.Location = new System.Drawing.Point(0, 0);
  205. this.listBox1.Name = "listBox1";
  206. this.listBox1.Size = new System.Drawing.Size(255, 304);
  207. this.listBox1.TabIndex = 20;
  208. //
  209. // textBox1
  210. //
  211. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  212. this.textBox1.Location = new System.Drawing.Point(0, 0);
  213. this.textBox1.Multiline = true;
  214. this.textBox1.Name = "textBox1";
  215. this.textBox1.Size = new System.Drawing.Size(279, 304);
  216. this.textBox1.TabIndex = 21;
  217. //
  218. // Form1
  219. //
  220. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  221. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  222. this.ClientSize = new System.Drawing.Size(545, 444);
  223. this.Controls.Add(this.groupBox1);
  224. this.Controls.Add(this.label5);
  225. this.Controls.Add(this.label6);
  226. this.Controls.Add(this.cmbServer);
  227. this.Controls.Add(this.btnCreateLetter);
  228. this.Controls.Add(this.btnConnect);
  229. this.Controls.Add(this.txtUser);
  230. this.Controls.Add(this.label4);
  231. this.Controls.Add(this.label3);
  232. this.Controls.Add(this.label2);
  233. this.Controls.Add(this.label1);
  234. this.Controls.Add(this.txtPass);
  235. this.Controls.Add(this.txtPort);
  236. this.Controls.Add(this.button1);
  237. this.Name = "Form1";
  238. this.Text = "Электронная почта";
  239. this.Load += new System.EventHandler(this.Form1_Load);
  240. this.groupBox1.ResumeLayout(false);
  241. this.splitContainer1.Panel1.ResumeLayout(false);
  242. this.splitContainer1.Panel2.ResumeLayout(false);
  243. this.splitContainer1.Panel2.PerformLayout();
  244. this.splitContainer1.ResumeLayout(false);
  245. this.ResumeLayout(false);
  246. this.PerformLayout();
  247.  
  248. }
  249.  
  250. #endregion
  251.  
  252. private System.Windows.Forms.Button button1;
  253. private System.Windows.Forms.TextBox txtPort;
  254. private System.Windows.Forms.TextBox txtPass;
  255. private System.Windows.Forms.Label label1;
  256. private System.Windows.Forms.Label label2;
  257. private System.Windows.Forms.Label label3;
  258. private System.Windows.Forms.Label label4;
  259. private System.Windows.Forms.TextBox txtUser;
  260. private System.Windows.Forms.Button btnConnect;
  261. private System.Windows.Forms.Button btnCreateLetter;
  262. private System.Windows.Forms.ComboBox cmbServer;
  263. private System.Windows.Forms.Label label6;
  264. private System.Windows.Forms.Label label5;
  265. private System.Windows.Forms.GroupBox groupBox1;
  266. private System.Windows.Forms.SplitContainer splitContainer1;
  267. private System.Windows.Forms.ListBox listBox1;
  268. private System.Windows.Forms.TextBox textBox1;
  269. }
  270. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement