コード例 #1
0
 private void RequestRolesData()
 {
     try
     {
         slueRoles.Properties.DataSource = _bll.GetRoles(new RolesVM());
     }
     catch (Exception ex)
     {
         XtraMessageBox.Show(ex.ToString(), "提示", MessageBoxButtons.OK);
     }
 }
コード例 #2
0
ファイル: RoleManagement.cs プロジェクト: fancky2019/RABC
 private void RequestGridData()
 {
     try
     {
         gcRoles.DataSource = _bll.GetRoles(new RolesVM {
             Name = this.teQueryName.Text.Trim()
         });
     }
     catch (Exception ex)
     {
         XtraMessageBox.Show(ex.ToString(), "提示", MessageBoxButtons.OK);
     }
 }