Beispiel #1
0
        private void btnOk_Click(object sender, EventArgs e)
        {
            if (!string.IsNullOrWhiteSpace(txtTagName.Text))
            {
                if (operation == FormOperations.add)
                {
                    if (!TagDal.IsExistTag(Session.currUser.id, txtTagName.Text.Trim()))
                    {
                        currTag         = new Tag();
                        currTag.id      = StringUtil.getGuidN();
                        currTag.tag     = txtTagName.Text.Trim();
                        currTag.userid  = Session.currUser.id;
                        currTag.addtime = DateTime.Now;

                        memo          = new Memo();
                        memo.tagid    = currTag.id;
                        memo.content  = "";
                        memo.lasttime = DateTime.Now;
                        if (TagDal.AddTagAndMemo(currTag, memo))
                        {
                            this.DialogResult = DialogResult.OK;
                            this.Close();
                        }
                        else
                        {
                            ShowHint("保存失败");
                        }
                    }
                    else
                    {
                        ShowHint("已存在相同名称的备忘录,请输入另外的名称");
                        txtTagName.Focus();
                    }
                }
                else
                {
                    currTag = TagDal.Get(tagId);
                    if (currTag != null)
                    {
                        currTag.tag = txtTagName.Text.Trim();
                        if (TagDal.Modify(currTag))
                        {
                            this.DialogResult = DialogResult.OK;
                            this.Close();
                        }
                        else
                        {
                            ShowHint("保存失败");
                        }
                    }
                    else
                    {
                        MessageBox.Show("数据异常,保存失败");
                        this.Close();
                    }
                }
            }
            else
            {
                ShowHint("请输入名称");
                txtTagName.Focus();
            }
        }