winform+dev的前后台分离标准项目
lg
2024-09-01 6c8e038aad394c1e91c8c046d3de25dc8e84ecbe
DevApp/Gs.DevApp/DevFrm/User/SysMenuAdd.cs
@@ -9,6 +9,8 @@
{
    public partial class SysMenuAdd : DevExpress.XtraEditors.XtraForm
    {
        public event EventHandler<UpdateParentEventArgs> UpdateParent;
        public SysMenuAdd(string guid)
        {
            InitializeComponent();
@@ -42,19 +44,19 @@
        private void BtnSave_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtMenuType.Text.Trim()) || txtMenuType.SelectedIndex == 0)
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("菜单类型不能为空!");
                txtMenuType.Focus();
                return;
            }
            if (string.IsNullOrEmpty(txtMenuName.Text.Trim()))
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("菜单名称不能为空!");
                txtMenuName.Focus();
                return;
            }
            if (string.IsNullOrEmpty(txtMenuType.Text.Trim()))
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("菜单类型不能为空!");
                txtMenuType.Focus();
                return;
            }
            if (string.IsNullOrEmpty(txtStatus.Text.Trim()))
            if (string.IsNullOrEmpty(txtStatus.Text.Trim()) || txtStatus.SelectedIndex == 0)
            {
                Gs.DevApp.ToolBox.MsgHelper.Warning("菜单状态不能为空!");
                txtStatus.Focus();
@@ -83,7 +85,10 @@
                strJson = UtilityHelper.HttpPost("", "MenuAction/EditModel", JsonConvert.SerializeObject(_obj));
                ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.GetDataByJson(strJson);
                ToolBox.MsgHelper.Warning("提示:" + _rtn.rtnMsg);
                if (_rtn.rtnCode > 0) { getTree(); }
                if (_rtn.rtnCode > 0)
                {
                    UpdateParent?.Invoke(this, new UpdateParentEventArgs { Data = "" });
                }
            }
            catch (Exception ex)
            {
@@ -143,5 +148,22 @@
                ToolBox.MsgHelper.Warning("提示:" + ex.Message);
            }
        }
        private void cleanTxt()
        {
            //guid = lbGuid.Text.Trim(),//主建
            //    upGuid = _upGuid,//上级的主建
            //    name = txtMenuName.Text.Trim(),//名称
            //    icon = txtMenuIco.Text,//菜单图标
            //    status = txtStatus.SelectedIndex,//状态
            //    formPath = txtFormNamespace.Text.Trim(),//窗体路径
            //    idx = int.Parse(txtIdx.Value.ToString()),//排序
            //    category = txtMenuType.SelectedIndex,//类型
            //if(lbGuid.Text)
        }
    }
}