FormWriteMail.Designer.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace CommonRPG.Client.Win32.Forms
  2. {
  3. partial class FormWriteMail
  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.btn_send = new System.Windows.Forms.Button();
  29. this.btn_cancel = new System.Windows.Forms.Button();
  30. this.textbox_mailTitle = new System.Windows.Forms.TextBox();
  31. this.textBox_mailContent = new System.Windows.Forms.TextBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.combobox_receiver = new System.Windows.Forms.ComboBox();
  36. this.SuspendLayout();
  37. //
  38. // btn_send
  39. //
  40. this.btn_send.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  41. this.btn_send.Location = new System.Drawing.Point(650, 419);
  42. this.btn_send.Name = "btn_send";
  43. this.btn_send.Size = new System.Drawing.Size(120, 38);
  44. this.btn_send.TabIndex = 0;
  45. this.btn_send.Text = "发送";
  46. this.btn_send.UseVisualStyleBackColor = true;
  47. this.btn_send.Click += new System.EventHandler(this.btn_send_Click);
  48. //
  49. // btn_cancel
  50. //
  51. this.btn_cancel.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  52. this.btn_cancel.Location = new System.Drawing.Point(526, 419);
  53. this.btn_cancel.Name = "btn_cancel";
  54. this.btn_cancel.Size = new System.Drawing.Size(120, 38);
  55. this.btn_cancel.TabIndex = 1;
  56. this.btn_cancel.Text = "取消";
  57. this.btn_cancel.UseVisualStyleBackColor = true;
  58. //
  59. // textbox_mailTitle
  60. //
  61. this.textbox_mailTitle.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  62. this.textbox_mailTitle.Location = new System.Drawing.Point(279, 133);
  63. this.textbox_mailTitle.Name = "textbox_mailTitle";
  64. this.textbox_mailTitle.Size = new System.Drawing.Size(348, 30);
  65. this.textbox_mailTitle.TabIndex = 2;
  66. //
  67. // textBox_mailContent
  68. //
  69. this.textBox_mailContent.Location = new System.Drawing.Point(279, 181);
  70. this.textBox_mailContent.Multiline = true;
  71. this.textBox_mailContent.Name = "textBox_mailContent";
  72. this.textBox_mailContent.Size = new System.Drawing.Size(348, 153);
  73. this.textBox_mailContent.TabIndex = 3;
  74. //
  75. // label1
  76. //
  77. this.label1.AutoSize = true;
  78. this.label1.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  79. this.label1.Location = new System.Drawing.Point(187, 133);
  80. this.label1.Name = "label1";
  81. this.label1.Size = new System.Drawing.Size(52, 21);
  82. this.label1.TabIndex = 4;
  83. this.label1.Text = "标题";
  84. //
  85. // label2
  86. //
  87. this.label2.AutoSize = true;
  88. this.label2.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  89. this.label2.Location = new System.Drawing.Point(187, 181);
  90. this.label2.Name = "label2";
  91. this.label2.Size = new System.Drawing.Size(52, 21);
  92. this.label2.TabIndex = 5;
  93. this.label2.Text = "内容";
  94. //
  95. // label3
  96. //
  97. this.label3.AutoSize = true;
  98. this.label3.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  99. this.label3.Location = new System.Drawing.Point(187, 91);
  100. this.label3.Name = "label3";
  101. this.label3.Size = new System.Drawing.Size(73, 21);
  102. this.label3.TabIndex = 6;
  103. this.label3.Text = "收件人";
  104. //
  105. // combobox_receiver
  106. //
  107. this.combobox_receiver.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  108. this.combobox_receiver.FormattingEnabled = true;
  109. this.combobox_receiver.Location = new System.Drawing.Point(279, 84);
  110. this.combobox_receiver.Name = "combobox_receiver";
  111. this.combobox_receiver.Size = new System.Drawing.Size(348, 28);
  112. this.combobox_receiver.TabIndex = 8;
  113. //
  114. // FormWriteMail
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(836, 502);
  119. this.Controls.Add(this.combobox_receiver);
  120. this.Controls.Add(this.label3);
  121. this.Controls.Add(this.label2);
  122. this.Controls.Add(this.label1);
  123. this.Controls.Add(this.textBox_mailContent);
  124. this.Controls.Add(this.textbox_mailTitle);
  125. this.Controls.Add(this.btn_cancel);
  126. this.Controls.Add(this.btn_send);
  127. this.Name = "FormWriteMail";
  128. this.Text = "FormWriteMail";
  129. this.ResumeLayout(false);
  130. this.PerformLayout();
  131. }
  132. #endregion
  133. private System.Windows.Forms.Button btn_send;
  134. private System.Windows.Forms.Button btn_cancel;
  135. private System.Windows.Forms.TextBox textbox_mailTitle;
  136. private System.Windows.Forms.TextBox textBox_mailContent;
  137. private System.Windows.Forms.Label label1;
  138. private System.Windows.Forms.Label label2;
  139. private System.Windows.Forms.Label label3;
  140. private System.Windows.Forms.ComboBox combobox_receiver;
  141. }
  142. }