public DateForm(string path, bool w, bool admin, string securityPath)
 {
     InitializeComponent();
     this.path         = path.Replace(@"\", @"\\");
     this.w            = w;
     this.admin        = admin;
     w                 = admin = false;
     secure            = true;
     this.securityPath = securityPath;
     folderSecurity    = new FolderSecurity();
 }
コード例 #2
0
 public FormAccessMatrix()
 {
     InitializeComponent();
     logined  = secure = false;
     dataBase = new string[]
     {
         "admin",
         "user",
         "system"
     };
     s              = r = w = false;
     securityPath   = "D:\\Matrix";
     folderSecurity = new FolderSecurity();
 }