示例#1
0
        private void btEdit_Click(object sender, EventArgs e)
        {
            if (listBoxMain.SelectedIndex != -1)
            {
                LinkType test = new LinkType();
                test = (LinkType)listBoxMain.SelectedItem;

                FormEditLink myEdit = new FormEditLink();
                myEdit.Edit = test;
                myEdit.ShowDialog();

                ListBoxMainRefresh();
            }
        }
示例#2
0
        private void btEdit_Click(object sender, EventArgs e)
        {
            if (listBoxMain.SelectedIndex != -1)
            {
                LinkType test = new LinkType();
                test = (LinkType)listBoxMain.SelectedItem;

                FormEditLink myEdit = new FormEditLink();
                myEdit.Edit = test;
                myEdit.ShowDialog();

                ListBoxMainRefresh();
            }
        }