コード例 #1
0
        private void btnNewGroup_Click(object sender, EventArgs e)
        {
            int id = TextUtils.ToInt(treeData.FocusedNode.GetValue(colIDTree));
            frmFileEplanGroupcs frm = new frmFileEplanGroupcs();

            frm.ParentID = id;
            if (frm.ShowDialog() == DialogResult.OK)
            {
                _curentNode = frm.CurentNode;
                loadTree();
            }
        }
コード例 #2
0
 private void btnEditGroup_Click(object sender, EventArgs e)
 {
     try
     {
         int id = TextUtils.ToInt(treeData.FocusedNode.GetValue(colIDTree));
         if (id == 0)
         {
             return;
         }
         ProductGroupModel   model = (ProductGroupModel)ProductGroupBO.Instance.FindByPK(id);
         frmFileEplanGroupcs frm   = new frmFileEplanGroupcs();
         frm.Model    = model;
         frm.ParentID = model.ParentID;
         if (frm.ShowDialog() == DialogResult.OK)
         {
             _curentNode = frm.CurentNode;
             loadTree();
         }
     }
     catch (Exception)
     {
     }
 }