frmRightsManager.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI
  10. {
  11. public partial class frmRightsManager : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmRightsManager()
  14. {
  15. InitializeComponent();
  16. this.panelRolesSet.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  17. | System.Windows.Forms.AnchorStyles.Left)
  18. | System.Windows.Forms.AnchorStyles.Right)));
  19. /*this.lisviewRolesUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  20. | System.Windows.Forms.AnchorStyles.Left)
  21. | System.Windows.Forms.AnchorStyles.Right));*/
  22. this.txtRolesDecription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top |
  23. System.Windows.Forms.AnchorStyles.Left)
  24. | System.Windows.Forms.AnchorStyles.Right));
  25. this.tableLayoutPanelRoles.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top
  26. | System.Windows.Forms.AnchorStyles.Left)
  27. | System.Windows.Forms.AnchorStyles.Right));
  28. this.btnDelUserRoles.Anchor = ((System.Windows.Forms.AnchorStyles)(
  29. System.Windows.Forms.AnchorStyles.Top
  30. | System.Windows.Forms.AnchorStyles.Right));
  31. this.btnDelUserExclusiveCompetence.Anchor = ((System.Windows.Forms.AnchorStyles)(
  32. System.Windows.Forms.AnchorStyles.Top
  33. | System.Windows.Forms.AnchorStyles.Right));
  34. this.tbcRolesManage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  35. | System.Windows.Forms.AnchorStyles.Left)
  36. | System.Windows.Forms.AnchorStyles.Right));
  37. this.groupBoxEx1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right));
  40. // this.lisviewRolesUser.TileSize = new Size();
  41. this.btnRolesSave.Click += btnRolesSave_Click;
  42. }
  43. void btnRolesSave_Click(object sender, EventArgs e)
  44. {
  45. // AxlyfzAttendanceModuleLib.AxlyfzAttendanceModule attModule = new AxlyfzAttendanceModuleLib.AxlyfzAttendanceModule();
  46. // attModule.InitMainFormView(
  47. }
  48. public LYFZ.ComponentLibrary.TabControlEx RolesTabControl
  49. {
  50. get { return this.tabControlEx1; }
  51. }
  52. public LYFZ.ComponentLibrary.DataGridViewEx DgvPermissionTemplate {
  53. get { return this.dataGridViewEx1; }
  54. }
  55. }
  56. }