Employee_Group.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. namespace UAS_MES_NEW.Employee
  2. {
  3. partial class Employee_Group
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Employee_Group));
  31. this.ug_code_label = new System.Windows.Forms.Label();
  32. this.ug_name_label = new System.Windows.Forms.Label();
  33. this.UserGroupDGV = new UAS_MES_NEW.CustomControl.DataGrid_View.DataGridViewWithSerialNum();
  34. this.ug_id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.ug_code1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.ug_name1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.UserSetting = new System.Windows.Forms.DataGridViewLinkColumn();
  38. this.PowerSetting = new System.Windows.Forms.DataGridViewLinkColumn();
  39. this.NewGroup = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
  40. this.DeleteGroup = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
  41. this.Screen = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
  42. this.ug_name = new UAS_MES_NEW.CustomControl.TextBoxWithIcon.SearchTextBox();
  43. this.ug_code = new UAS_MES_NEW.CustomControl.TextBoxWithIcon.SearchTextBox();
  44. ((System.ComponentModel.ISupportInitialize)(this.UserGroupDGV)).BeginInit();
  45. this.SuspendLayout();
  46. //
  47. // ug_code_label
  48. //
  49. this.ug_code_label.AutoSize = true;
  50. this.ug_code_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  51. this.ug_code_label.Location = new System.Drawing.Point(9, 24);
  52. this.ug_code_label.Name = "ug_code_label";
  53. this.ug_code_label.Size = new System.Drawing.Size(90, 21);
  54. this.ug_code_label.TabIndex = 237;
  55. this.ug_code_label.Text = "用户组代码";
  56. //
  57. // ug_name_label
  58. //
  59. this.ug_name_label.AutoSize = true;
  60. this.ug_name_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.ug_name_label.Location = new System.Drawing.Point(264, 24);
  62. this.ug_name_label.Name = "ug_name_label";
  63. this.ug_name_label.Size = new System.Drawing.Size(58, 21);
  64. this.ug_name_label.TabIndex = 239;
  65. this.ug_name_label.Text = "用户组";
  66. //
  67. // UserGroupDGV
  68. //
  69. this.UserGroupDGV.AllowUserToAddRows = false;
  70. this.UserGroupDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  71. this.UserGroupDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  72. this.ug_id,
  73. this.ug_code1,
  74. this.ug_name1,
  75. this.UserSetting,
  76. this.PowerSetting});
  77. this.UserGroupDGV.Location = new System.Drawing.Point(9, 57);
  78. this.UserGroupDGV.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  79. this.UserGroupDGV.Name = "UserGroupDGV";
  80. this.UserGroupDGV.RowTemplate.Height = 27;
  81. this.UserGroupDGV.Size = new System.Drawing.Size(652, 478);
  82. this.UserGroupDGV.TabIndex = 244;
  83. this.UserGroupDGV.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.UserGroupDGV_CellClick);
  84. //
  85. // ug_id
  86. //
  87. this.ug_id.DataPropertyName = "ug_id";
  88. this.ug_id.HeaderText = "ug_id";
  89. this.ug_id.Name = "ug_id";
  90. this.ug_id.Visible = false;
  91. //
  92. // ug_code1
  93. //
  94. this.ug_code1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  95. this.ug_code1.DataPropertyName = "ug_code";
  96. this.ug_code1.HeaderText = "用户组代码";
  97. this.ug_code1.Name = "ug_code1";
  98. //
  99. // ug_name1
  100. //
  101. this.ug_name1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  102. this.ug_name1.DataPropertyName = "ug_name";
  103. this.ug_name1.HeaderText = "用户组";
  104. this.ug_name1.Name = "ug_name1";
  105. //
  106. // UserSetting
  107. //
  108. this.UserSetting.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  109. this.UserSetting.DataPropertyName = "UserSetting";
  110. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  111. this.UserSetting.DefaultCellStyle = dataGridViewCellStyle1;
  112. this.UserSetting.HeaderText = "成员设置";
  113. this.UserSetting.Name = "UserSetting";
  114. this.UserSetting.Width = 120;
  115. //
  116. // PowerSetting
  117. //
  118. this.PowerSetting.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  119. this.PowerSetting.DataPropertyName = "PowerSetting";
  120. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  121. this.PowerSetting.DefaultCellStyle = dataGridViewCellStyle2;
  122. this.PowerSetting.HeaderText = "权限分配";
  123. this.PowerSetting.Name = "PowerSetting";
  124. //
  125. // NewGroup
  126. //
  127. this.NewGroup.AllPower = null;
  128. this.NewGroup.BackColor = System.Drawing.Color.Transparent;
  129. this.NewGroup.DownImage = ((System.Drawing.Image)(resources.GetObject("NewGroup.DownImage")));
  130. this.NewGroup.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  131. this.NewGroup.Image = null;
  132. this.NewGroup.IsShowBorder = true;
  133. this.NewGroup.Location = new System.Drawing.Point(557, 23);
  134. this.NewGroup.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  135. this.NewGroup.MoveImage = ((System.Drawing.Image)(resources.GetObject("NewGroup.MoveImage")));
  136. this.NewGroup.Name = "NewGroup";
  137. this.NewGroup.NormalImage = ((System.Drawing.Image)(resources.GetObject("NewGroup.NormalImage")));
  138. this.NewGroup.Power = null;
  139. this.NewGroup.Size = new System.Drawing.Size(45, 26);
  140. this.NewGroup.TabIndex = 243;
  141. this.NewGroup.Tag = "ShowDialogWindow";
  142. this.NewGroup.Text = "新增";
  143. this.NewGroup.UseVisualStyleBackColor = false;
  144. this.NewGroup.Click += new System.EventHandler(this.NewGroup_Click);
  145. //
  146. // DeleteGroup
  147. //
  148. this.DeleteGroup.AllPower = null;
  149. this.DeleteGroup.BackColor = System.Drawing.Color.Transparent;
  150. this.DeleteGroup.DownImage = ((System.Drawing.Image)(resources.GetObject("DeleteGroup.DownImage")));
  151. this.DeleteGroup.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  152. this.DeleteGroup.Image = null;
  153. this.DeleteGroup.IsShowBorder = true;
  154. this.DeleteGroup.Location = new System.Drawing.Point(616, 23);
  155. this.DeleteGroup.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  156. this.DeleteGroup.MoveImage = ((System.Drawing.Image)(resources.GetObject("DeleteGroup.MoveImage")));
  157. this.DeleteGroup.Name = "DeleteGroup";
  158. this.DeleteGroup.NormalImage = ((System.Drawing.Image)(resources.GetObject("DeleteGroup.NormalImage")));
  159. this.DeleteGroup.Power = null;
  160. this.DeleteGroup.Size = new System.Drawing.Size(45, 26);
  161. this.DeleteGroup.TabIndex = 242;
  162. this.DeleteGroup.Text = "删除";
  163. this.DeleteGroup.UseVisualStyleBackColor = false;
  164. this.DeleteGroup.Click += new System.EventHandler(this.DeleteGroup_Click);
  165. //
  166. // Screen
  167. //
  168. this.Screen.AllPower = null;
  169. this.Screen.BackColor = System.Drawing.Color.Transparent;
  170. this.Screen.DownImage = ((System.Drawing.Image)(resources.GetObject("Screen.DownImage")));
  171. this.Screen.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  172. this.Screen.Image = null;
  173. this.Screen.IsShowBorder = true;
  174. this.Screen.Location = new System.Drawing.Point(500, 23);
  175. this.Screen.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  176. this.Screen.MoveImage = ((System.Drawing.Image)(resources.GetObject("Screen.MoveImage")));
  177. this.Screen.Name = "Screen";
  178. this.Screen.NormalImage = ((System.Drawing.Image)(resources.GetObject("Screen.NormalImage")));
  179. this.Screen.Power = null;
  180. this.Screen.Size = new System.Drawing.Size(45, 26);
  181. this.Screen.TabIndex = 241;
  182. this.Screen.Text = "筛选";
  183. this.Screen.UseVisualStyleBackColor = false;
  184. this.Screen.Click += new System.EventHandler(this.Screen_Click);
  185. //
  186. // ug_name
  187. //
  188. this.ug_name.AllPower = null;
  189. this.ug_name.Caller = null;
  190. this.ug_name.Condition = null;
  191. this.ug_name.DBTitle = null;
  192. this.ug_name.FormName = null;
  193. this.ug_name.Location = new System.Drawing.Point(332, 24);
  194. this.ug_name.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  195. this.ug_name.Name = "ug_name";
  196. this.ug_name.Power = null;
  197. this.ug_name.ReturnData = null;
  198. this.ug_name.SelectField = null;
  199. this.ug_name.SetValueField = null;
  200. this.ug_name.Size = new System.Drawing.Size(137, 21);
  201. this.ug_name.TabIndex = 240;
  202. this.ug_name.TableName = null;
  203. this.ug_name.Tag = "ug_name";
  204. this.ug_name.TextBoxEnable = true;
  205. //
  206. // ug_code
  207. //
  208. this.ug_code.AllPower = null;
  209. this.ug_code.Caller = null;
  210. this.ug_code.Condition = null;
  211. this.ug_code.DBTitle = null;
  212. this.ug_code.FormName = null;
  213. this.ug_code.Location = new System.Drawing.Point(104, 24);
  214. this.ug_code.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  215. this.ug_code.Name = "ug_code";
  216. this.ug_code.Power = null;
  217. this.ug_code.ReturnData = null;
  218. this.ug_code.SelectField = null;
  219. this.ug_code.SetValueField = null;
  220. this.ug_code.Size = new System.Drawing.Size(135, 21);
  221. this.ug_code.TabIndex = 238;
  222. this.ug_code.TableName = null;
  223. this.ug_code.Tag = "ug_code";
  224. this.ug_code.TextBoxEnable = true;
  225. //
  226. // Employee_Group
  227. //
  228. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  229. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  230. this.ClientSize = new System.Drawing.Size(719, 556);
  231. this.Controls.Add(this.UserGroupDGV);
  232. this.Controls.Add(this.NewGroup);
  233. this.Controls.Add(this.DeleteGroup);
  234. this.Controls.Add(this.Screen);
  235. this.Controls.Add(this.ug_name);
  236. this.Controls.Add(this.ug_name_label);
  237. this.Controls.Add(this.ug_code);
  238. this.Controls.Add(this.ug_code_label);
  239. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  240. this.Name = "Employee_Group";
  241. this.Tag = "Employee!Data";
  242. this.Text = "人员资料";
  243. this.Load += new System.EventHandler(this.人员分组_Load);
  244. this.SizeChanged += new System.EventHandler(this.人员分组_SizeChanged);
  245. ((System.ComponentModel.ISupportInitialize)(this.UserGroupDGV)).EndInit();
  246. this.ResumeLayout(false);
  247. this.PerformLayout();
  248. }
  249. #endregion
  250. private CustomControl.TextBoxWithIcon.SearchTextBox ug_code;
  251. private System.Windows.Forms.Label ug_code_label;
  252. private CustomControl.TextBoxWithIcon.SearchTextBox ug_name;
  253. private System.Windows.Forms.Label ug_name_label;
  254. private CustomControl.ButtonUtil.NormalButton Screen;
  255. private CustomControl.ButtonUtil.NormalButton DeleteGroup;
  256. private CustomControl.ButtonUtil.NormalButton NewGroup;
  257. private CustomControl.DataGrid_View.DataGridViewWithSerialNum UserGroupDGV;
  258. private System.Windows.Forms.DataGridViewTextBoxColumn ug_id;
  259. private System.Windows.Forms.DataGridViewTextBoxColumn ug_code1;
  260. private System.Windows.Forms.DataGridViewTextBoxColumn ug_name1;
  261. private System.Windows.Forms.DataGridViewLinkColumn UserSetting;
  262. private System.Windows.Forms.DataGridViewLinkColumn PowerSetting;
  263. }
  264. }