FormAuthoryRole.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. namespace SIMDP.View
  2. {
  3. partial class FormAuthoryRole
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAuthoryRole));
  30. this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
  31. this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
  32. this.treeViewRole = new System.Windows.Forms.TreeView();
  33. this.menu_Tree = new System.Windows.Forms.ContextMenuStrip(this.components);
  34. this.menu_Add = new System.Windows.Forms.ToolStripMenuItem();
  35. this.menu_Expand = new System.Windows.Forms.ToolStripMenuItem();
  36. this.menu_Collapse = new System.Windows.Forms.ToolStripMenuItem();
  37. this.menu_Refresh = new System.Windows.Forms.ToolStripMenuItem();
  38. this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
  39. this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
  40. this.winGridViewPager1 = new ProjectBase.Controls.WinGridViewPager();
  41. this.treeListRight = new DevExpress.XtraTreeList.TreeList();
  42. this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
  43. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  44. ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
  45. this.splitContainerControl1.SuspendLayout();
  46. this.menu_Tree.SuspendLayout();
  47. ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
  48. this.splitContainerControl2.SuspendLayout();
  49. ((System.ComponentModel.ISupportInitialize)(this.treeListRight)).BeginInit();
  50. this.SuspendLayout();
  51. //
  52. // splitContainerControl1
  53. //
  54. this.splitContainerControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  55. | System.Windows.Forms.AnchorStyles.Left)
  56. | System.Windows.Forms.AnchorStyles.Right)));
  57. this.splitContainerControl1.Location = new System.Drawing.Point(2, 1);
  58. this.splitContainerControl1.Name = "splitContainerControl1";
  59. this.splitContainerControl1.Panel1.Controls.Add(this.labelControl1);
  60. this.splitContainerControl1.Panel1.Controls.Add(this.treeViewRole);
  61. this.splitContainerControl1.Panel1.Text = "Panel1";
  62. this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
  63. this.splitContainerControl1.Panel2.Text = "Panel2";
  64. this.splitContainerControl1.Size = new System.Drawing.Size(1587, 521);
  65. this.splitContainerControl1.SplitterPosition = 217;
  66. this.splitContainerControl1.TabIndex = 0;
  67. this.splitContainerControl1.Text = "splitContainerControl1";
  68. //
  69. // labelControl1
  70. //
  71. this.labelControl1.Location = new System.Drawing.Point(11, 4);
  72. this.labelControl1.Name = "labelControl1";
  73. this.labelControl1.Size = new System.Drawing.Size(84, 14);
  74. this.labelControl1.TabIndex = 1;
  75. this.labelControl1.Text = "角色管理列表:";
  76. //
  77. // treeViewRole
  78. //
  79. this.treeViewRole.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  80. | System.Windows.Forms.AnchorStyles.Left)
  81. | System.Windows.Forms.AnchorStyles.Right)));
  82. this.treeViewRole.ContextMenuStrip = this.menu_Tree;
  83. this.treeViewRole.Location = new System.Drawing.Point(4, 24);
  84. this.treeViewRole.Name = "treeViewRole";
  85. this.treeViewRole.Size = new System.Drawing.Size(208, 494);
  86. this.treeViewRole.TabIndex = 0;
  87. this.treeViewRole.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeNode_AfterSelect);
  88. //
  89. // menu_Tree
  90. //
  91. this.menu_Tree.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  92. this.menu_Add,
  93. this.menu_Expand,
  94. this.menu_Collapse,
  95. this.menu_Refresh});
  96. this.menu_Tree.Name = "menu_Tree";
  97. this.menu_Tree.Size = new System.Drawing.Size(125, 92);
  98. //
  99. // menu_Add
  100. //
  101. this.menu_Add.Image = global::SIMDP.View.Properties.Resources.Add_16x16;
  102. this.menu_Add.Name = "menu_Add";
  103. this.menu_Add.Size = new System.Drawing.Size(124, 22);
  104. this.menu_Add.Text = "添加";
  105. this.menu_Add.Click += new System.EventHandler(this.menu_Add_Click);
  106. //
  107. // menu_Expand
  108. //
  109. this.menu_Expand.Image = global::SIMDP.View.Properties.Resources.Open_16x16;
  110. this.menu_Expand.Name = "menu_Expand";
  111. this.menu_Expand.Size = new System.Drawing.Size(124, 22);
  112. this.menu_Expand.Text = "全部展开";
  113. this.menu_Expand.Click += new System.EventHandler(this.menu_Expand_Click);
  114. //
  115. // menu_Collapse
  116. //
  117. this.menu_Collapse.Image = global::SIMDP.View.Properties.Resources.Close_16x16;
  118. this.menu_Collapse.Name = "menu_Collapse";
  119. this.menu_Collapse.Size = new System.Drawing.Size(124, 22);
  120. this.menu_Collapse.Text = "全部折叠";
  121. this.menu_Collapse.Click += new System.EventHandler(this.menu_Collapse_Click);
  122. //
  123. // menu_Refresh
  124. //
  125. this.menu_Refresh.Image = global::SIMDP.View.Properties.Resources.Refresh_16x16;
  126. this.menu_Refresh.Name = "menu_Refresh";
  127. this.menu_Refresh.Size = new System.Drawing.Size(124, 22);
  128. this.menu_Refresh.Text = "刷新";
  129. this.menu_Refresh.Click += new System.EventHandler(this.menu_Refresh_Click);
  130. //
  131. // splitContainerControl2
  132. //
  133. this.splitContainerControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  134. | System.Windows.Forms.AnchorStyles.Left)
  135. | System.Windows.Forms.AnchorStyles.Right)));
  136. this.splitContainerControl2.Location = new System.Drawing.Point(4, 0);
  137. this.splitContainerControl2.Name = "splitContainerControl2";
  138. this.splitContainerControl2.Panel1.Controls.Add(this.labelControl2);
  139. this.splitContainerControl2.Panel1.Controls.Add(this.winGridViewPager1);
  140. this.splitContainerControl2.Panel1.Text = "Panel1";
  141. this.splitContainerControl2.Panel2.Controls.Add(this.treeListRight);
  142. this.splitContainerControl2.Panel2.Controls.Add(this.labelControl3);
  143. this.splitContainerControl2.Panel2.Text = "Panel2";
  144. this.splitContainerControl2.Size = new System.Drawing.Size(1358, 518);
  145. this.splitContainerControl2.SplitterPosition = 1015;
  146. this.splitContainerControl2.TabIndex = 0;
  147. this.splitContainerControl2.Text = "splitContainerControl2";
  148. //
  149. // labelControl2
  150. //
  151. this.labelControl2.Location = new System.Drawing.Point(12, 4);
  152. this.labelControl2.Name = "labelControl2";
  153. this.labelControl2.Size = new System.Drawing.Size(84, 14);
  154. this.labelControl2.TabIndex = 2;
  155. this.labelControl2.Text = "角色信息列表:";
  156. //
  157. // winGridViewPager1
  158. //
  159. this.winGridViewPager1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  160. | System.Windows.Forms.AnchorStyles.Left)
  161. | System.Windows.Forms.AnchorStyles.Right)));
  162. this.winGridViewPager1.AppendedMenu = null;
  163. this.winGridViewPager1.ColumnNameAlias = ((System.Collections.Generic.Dictionary<string, string>)(resources.GetObject("winGridViewPager1.ColumnNameAlias")));
  164. this.winGridViewPager1.DataSource = null;
  165. this.winGridViewPager1.DisplayColumns = "";
  166. this.winGridViewPager1.FixedColumns = null;
  167. this.winGridViewPager1.Location = new System.Drawing.Point(4, 24);
  168. this.winGridViewPager1.MinimumSize = new System.Drawing.Size(540, 0);
  169. this.winGridViewPager1.Name = "winGridViewPager1";
  170. this.winGridViewPager1.PrintTitle = "";
  171. this.winGridViewPager1.ShowAddMenu = true;
  172. this.winGridViewPager1.ShowCheckBox = false;
  173. this.winGridViewPager1.ShowDeleteMenu = true;
  174. this.winGridViewPager1.ShowEditMenu = true;
  175. this.winGridViewPager1.ShowExportButton = true;
  176. this.winGridViewPager1.Size = new System.Drawing.Size(1006, 497);
  177. this.winGridViewPager1.TabIndex = 0;
  178. //
  179. // treeListRight
  180. //
  181. this.treeListRight.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  182. | System.Windows.Forms.AnchorStyles.Left)
  183. | System.Windows.Forms.AnchorStyles.Right)));
  184. this.treeListRight.Location = new System.Drawing.Point(4, 24);
  185. this.treeListRight.Name = "treeListRight";
  186. this.treeListRight.OptionsBehavior.AllowIndeterminateCheckState = true;
  187. this.treeListRight.OptionsView.ShowCheckBoxes = true;
  188. this.treeListRight.Size = new System.Drawing.Size(331, 491);
  189. this.treeListRight.TabIndex = 4;
  190. this.treeListRight.CustomDrawNodeIndicator += new DevExpress.XtraTreeList.CustomDrawNodeIndicatorEventHandler(this.treeListRight_CustomDrawNodeIndicator);
  191. //
  192. // labelControl3
  193. //
  194. this.labelControl3.Location = new System.Drawing.Point(4, 4);
  195. this.labelControl3.Name = "labelControl3";
  196. this.labelControl3.Size = new System.Drawing.Size(84, 14);
  197. this.labelControl3.TabIndex = 3;
  198. this.labelControl3.Text = "角色所属权限:";
  199. //
  200. // imageList1
  201. //
  202. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  203. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  204. this.imageList1.Images.SetKeyName(0, "766325[1].png");
  205. this.imageList1.Images.SetKeyName(1, "102.png");
  206. this.imageList1.Images.SetKeyName(2, "BO_Users.png");
  207. //
  208. // FormAuthoryRole
  209. //
  210. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  211. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  212. this.ClientSize = new System.Drawing.Size(1588, 525);
  213. this.Controls.Add(this.splitContainerControl1);
  214. this.Name = "FormAuthoryRole";
  215. this.Text = "角色管理";
  216. this.Load += new System.EventHandler(this.FormAuthoryRole_Load);
  217. ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
  218. this.splitContainerControl1.ResumeLayout(false);
  219. this.menu_Tree.ResumeLayout(false);
  220. ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
  221. this.splitContainerControl2.ResumeLayout(false);
  222. ((System.ComponentModel.ISupportInitialize)(this.treeListRight)).EndInit();
  223. this.ResumeLayout(false);
  224. }
  225. #endregion
  226. private DevExpress.XtraEditors.SplitContainerControl splitContainerControl1;
  227. private System.Windows.Forms.TreeView treeViewRole;
  228. private DevExpress.XtraEditors.LabelControl labelControl1;
  229. private DevExpress.XtraEditors.SplitContainerControl splitContainerControl2;
  230. private DevExpress.XtraEditors.LabelControl labelControl2;
  231. private ProjectBase.Controls.WinGridViewPager winGridViewPager1;
  232. private DevExpress.XtraEditors.LabelControl labelControl3;
  233. private DevExpress.XtraTreeList.TreeList treeListRight;
  234. private System.Windows.Forms.ContextMenuStrip menu_Tree;
  235. private System.Windows.Forms.ToolStripMenuItem menu_Add;
  236. private System.Windows.Forms.ToolStripMenuItem menu_Expand;
  237. private System.Windows.Forms.ToolStripMenuItem menu_Collapse;
  238. private System.Windows.Forms.ToolStripMenuItem menu_Refresh;
  239. private System.Windows.Forms.ImageList imageList1;
  240. }
  241. }