Beispiel #1
0
 private void MnModify_Click(object sender, System.EventArgs e)
 {
     Framework.Entity.Model model = (Framework.Entity.Model)AdvTree.SelectedNode.Tag;
     FrmModel win = new FrmModel(true, model);
     win.RefreshIntance += new Framework.Interface.Content.FrmModel.RefreshHandle(RefreshList);
     win.ShowDialog();
 }
Beispiel #2
0
        private void MnAdd_Click(object sender, System.EventArgs e)
        {
            FrmModel win = new FrmModel(false, new Framework.Entity.Model());

            win.RefreshIntance += new Framework.Interface.Content.FrmModel.RefreshHandle(RefreshList);
            win.ShowDialog();
        }
Beispiel #3
0
        private void MnModify_Click(object sender, System.EventArgs e)
        {
            Framework.Entity.Model model = (Framework.Entity.Model)AdvTree.SelectedNode.Tag;
            FrmModel win = new FrmModel(true, model);

            win.RefreshIntance += new Framework.Interface.Content.FrmModel.RefreshHandle(RefreshList);
            win.ShowDialog();
        }
Beispiel #4
0
 private void MnAdd_Click(object sender, System.EventArgs e)
 {
     FrmModel win = new FrmModel(false, new Framework.Entity.Model());
     win.RefreshIntance += new Framework.Interface.Content.FrmModel.RefreshHandle(RefreshList);
     win.ShowDialog();
 }