革博士V2程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

NewUserFrm.Designer.cs 14 KiB

1 год назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. namespace GeBoShi.UI.User
  2. {
  3. partial class NewUserFrm
  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.btnCancel = new System.Windows.Forms.Button();
  29. this.btnSave = new System.Windows.Forms.Button();
  30. this.cobRoleId = new System.Windows.Forms.ComboBox();
  31. this.label5 = new System.Windows.Forms.Label();
  32. this.txtNote = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.txtName = new System.Windows.Forms.TextBox();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.txtCode = new System.Windows.Forms.TextBox();
  37. this.label1 = new System.Windows.Forms.Label();
  38. this.tbPassword = new System.Windows.Forms.TextBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.tbRePassword = new System.Windows.Forms.TextBox();
  41. this.label6 = new System.Windows.Forms.Label();
  42. this.uiTitel1 = new GeBoShi.UIKits.MaiMuMenu.UITitel_LT();
  43. this.SuspendLayout();
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  48. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.btnCancel.ForeColor = System.Drawing.Color.Black;
  50. this.btnCancel.Location = new System.Drawing.Point(290, 179);
  51. this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  52. this.btnCancel.Name = "btnCancel";
  53. this.btnCancel.Size = new System.Drawing.Size(69, 28);
  54. this.btnCancel.TabIndex = 40;
  55. this.btnCancel.Text = "取消";
  56. this.btnCancel.UseVisualStyleBackColor = true;
  57. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  58. //
  59. // btnSave
  60. //
  61. this.btnSave.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  62. this.btnSave.ForeColor = System.Drawing.Color.Black;
  63. this.btnSave.Location = new System.Drawing.Point(139, 179);
  64. this.btnSave.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  65. this.btnSave.Name = "btnSave";
  66. this.btnSave.Size = new System.Drawing.Size(69, 28);
  67. this.btnSave.TabIndex = 41;
  68. this.btnSave.Text = "保存";
  69. this.btnSave.UseVisualStyleBackColor = true;
  70. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  71. //
  72. // cobRoleId
  73. //
  74. this.cobRoleId.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  75. this.cobRoleId.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  76. this.cobRoleId.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  77. this.cobRoleId.FormattingEnabled = true;
  78. this.cobRoleId.Items.AddRange(new object[] {
  79. "管理员",
  80. "操作员"});
  81. this.cobRoleId.Location = new System.Drawing.Point(57, 89);
  82. this.cobRoleId.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  83. this.cobRoleId.Name = "cobRoleId";
  84. this.cobRoleId.Size = new System.Drawing.Size(150, 28);
  85. this.cobRoleId.TabIndex = 39;
  86. //
  87. // label5
  88. //
  89. this.label5.AutoSize = true;
  90. this.label5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  91. this.label5.ForeColor = System.Drawing.Color.MidnightBlue;
  92. this.label5.Location = new System.Drawing.Point(245, 91);
  93. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  94. this.label5.Name = "label5";
  95. this.label5.Size = new System.Drawing.Size(37, 20);
  96. this.label5.TabIndex = 38;
  97. this.label5.Text = "备注";
  98. //
  99. // txtNote
  100. //
  101. this.txtNote.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  102. this.txtNote.Location = new System.Drawing.Point(290, 89);
  103. this.txtNote.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  104. this.txtNote.Name = "txtNote";
  105. this.txtNote.Size = new System.Drawing.Size(150, 26);
  106. this.txtNote.TabIndex = 37;
  107. //
  108. // label3
  109. //
  110. this.label3.AutoSize = true;
  111. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  112. this.label3.ForeColor = System.Drawing.Color.MidnightBlue;
  113. this.label3.Location = new System.Drawing.Point(16, 94);
  114. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  115. this.label3.Name = "label3";
  116. this.label3.Size = new System.Drawing.Size(37, 20);
  117. this.label3.TabIndex = 36;
  118. this.label3.Text = "权限";
  119. //
  120. // txtName
  121. //
  122. this.txtName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  123. this.txtName.Location = new System.Drawing.Point(290, 58);
  124. this.txtName.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  125. this.txtName.Name = "txtName";
  126. this.txtName.Size = new System.Drawing.Size(151, 26);
  127. this.txtName.TabIndex = 35;
  128. //
  129. // label4
  130. //
  131. this.label4.AutoSize = true;
  132. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  133. this.label4.ForeColor = System.Drawing.Color.MidnightBlue;
  134. this.label4.Location = new System.Drawing.Point(245, 60);
  135. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  136. this.label4.Name = "label4";
  137. this.label4.Size = new System.Drawing.Size(37, 20);
  138. this.label4.TabIndex = 34;
  139. this.label4.Text = "名称";
  140. //
  141. // txtCode
  142. //
  143. this.txtCode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  144. this.txtCode.Location = new System.Drawing.Point(57, 58);
  145. this.txtCode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  146. this.txtCode.Name = "txtCode";
  147. this.txtCode.Size = new System.Drawing.Size(150, 26);
  148. this.txtCode.TabIndex = 33;
  149. //
  150. // label1
  151. //
  152. this.label1.AutoSize = true;
  153. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  154. this.label1.ForeColor = System.Drawing.Color.MidnightBlue;
  155. this.label1.Location = new System.Drawing.Point(16, 61);
  156. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  157. this.label1.Name = "label1";
  158. this.label1.Size = new System.Drawing.Size(37, 20);
  159. this.label1.TabIndex = 32;
  160. this.label1.Text = "帐号";
  161. //
  162. // tbPassword
  163. //
  164. this.tbPassword.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  165. this.tbPassword.Location = new System.Drawing.Point(57, 124);
  166. this.tbPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  167. this.tbPassword.Name = "tbPassword";
  168. this.tbPassword.PasswordChar = '*';
  169. this.tbPassword.Size = new System.Drawing.Size(151, 26);
  170. this.tbPassword.TabIndex = 43;
  171. this.tbPassword.Text = "1213";
  172. //
  173. // label2
  174. //
  175. this.label2.AutoSize = true;
  176. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  177. this.label2.ForeColor = System.Drawing.Color.MidnightBlue;
  178. this.label2.Location = new System.Drawing.Point(16, 129);
  179. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  180. this.label2.Name = "label2";
  181. this.label2.Size = new System.Drawing.Size(37, 20);
  182. this.label2.TabIndex = 42;
  183. this.label2.Text = "密码";
  184. //
  185. // tbRePassword
  186. //
  187. this.tbRePassword.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  188. this.tbRePassword.Location = new System.Drawing.Point(290, 124);
  189. this.tbRePassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  190. this.tbRePassword.Name = "tbRePassword";
  191. this.tbRePassword.PasswordChar = '*';
  192. this.tbRePassword.Size = new System.Drawing.Size(151, 26);
  193. this.tbRePassword.TabIndex = 45;
  194. this.tbRePassword.Text = "123";
  195. //
  196. // label6
  197. //
  198. this.label6.AutoSize = true;
  199. this.label6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  200. this.label6.ForeColor = System.Drawing.Color.MidnightBlue;
  201. this.label6.Location = new System.Drawing.Point(219, 126);
  202. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  203. this.label6.Name = "label6";
  204. this.label6.Size = new System.Drawing.Size(65, 20);
  205. this.label6.TabIndex = 44;
  206. this.label6.Text = "重复密码";
  207. //
  208. // uiTitel1
  209. //
  210. this.uiTitel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(161)))), ((int)(((byte)(241)))));
  211. this.uiTitel1.Dock = System.Windows.Forms.DockStyle.Top;
  212. this.uiTitel1.FatherForm = null;
  213. this.uiTitel1.Location = new System.Drawing.Point(0, 0);
  214. this.uiTitel1.Name = "uiTitel1";
  215. this.uiTitel1.Size = new System.Drawing.Size(476, 46);
  216. this.uiTitel1.TabIndex = 46;
  217. //
  218. // NewUserFrm
  219. //
  220. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  221. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  222. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(161)))), ((int)(((byte)(241)))));
  223. this.ClientSize = new System.Drawing.Size(476, 217);
  224. this.Controls.Add(this.uiTitel1);
  225. this.Controls.Add(this.tbRePassword);
  226. this.Controls.Add(this.label6);
  227. this.Controls.Add(this.tbPassword);
  228. this.Controls.Add(this.label2);
  229. this.Controls.Add(this.btnCancel);
  230. this.Controls.Add(this.btnSave);
  231. this.Controls.Add(this.cobRoleId);
  232. this.Controls.Add(this.label5);
  233. this.Controls.Add(this.txtNote);
  234. this.Controls.Add(this.label3);
  235. this.Controls.Add(this.txtName);
  236. this.Controls.Add(this.label4);
  237. this.Controls.Add(this.txtCode);
  238. this.Controls.Add(this.label1);
  239. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  240. this.ForeColor = System.Drawing.Color.White;
  241. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  242. this.Name = "NewUserFrm";
  243. this.ShowIcon = false;
  244. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  245. this.Text = "用户信息";
  246. this.Load += new System.EventHandler(this.NewUserFrm_Load);
  247. this.ResumeLayout(false);
  248. this.PerformLayout();
  249. }
  250. #endregion
  251. private System.Windows.Forms.Button btnCancel;
  252. private System.Windows.Forms.Button btnSave;
  253. private System.Windows.Forms.ComboBox cobRoleId;
  254. private System.Windows.Forms.Label label5;
  255. private System.Windows.Forms.TextBox txtNote;
  256. private System.Windows.Forms.Label label3;
  257. private System.Windows.Forms.TextBox txtName;
  258. private System.Windows.Forms.Label label4;
  259. private System.Windows.Forms.TextBox txtCode;
  260. private System.Windows.Forms.Label label1;
  261. private System.Windows.Forms.TextBox tbPassword;
  262. private System.Windows.Forms.Label label2;
  263. private System.Windows.Forms.TextBox tbRePassword;
  264. private System.Windows.Forms.Label label6;
  265. private GeBoShi.UIKits.MaiMuMenu.UITitel_LT uiTitel1;
  266. }
  267. }