/// <summary>
        /// 修改权限组
        /// </summary>
        /// <param name="handle">当前行</param>
        private void RightGroupUpdate(int handle)
        {
            try
            {
                if (handle < 0)
                {
                    return;
                }
                RightEdit rightEdit = new RightEdit();
                rightEdit.EditType = 2;
                DataRow         dw             = ViewRightGroup.GetDataRow(handle);
                int             ManagerGroupID = int.Parse(dw["ManagerGroupID"].ToString());
                UM_ManagerGroup ManagerGroup   = ManagerGroupBLL.GetModel(ManagerGroupID);
                rightEdit.ManagerGroup = ManagerGroup;

                if (rightEdit.ShowDialog(this) == DialogResult.OK)
                {
                    LoadRightGroup();
                    this.ViewRightGroup.FocusedRowHandle = handle;
                }
            }
            catch (Exception ex)
            {
                string      errCode   = "GL-1203";
                string      errMsg    = "修改权限组失败!";
                VTException exception = new VTException(errCode, errMsg, ex);
                LogHelper.WriteError(exception.ToString(), exception.InnerException);
            }
        }
        /// <summary>
        /// 添加事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btn_Add_Click(object sender, EventArgs e)
        {
            RightEdit rightEdit = new RightEdit();

            rightEdit.EditType = 1;
            if (rightEdit.ShowDialog(this) == DialogResult.OK)
            {
                LoadRightGroup();
            }
        }