private void mnusuanut_Click(object sender, EventArgs e) { Cửa_sổ_thêm_node cuaso = new Cửa_sổ_thêm_node(); if (cuaso.ShowDialog() == DialogResult.OK) { tv_quanli.SelectedNode.Text = cuaso.txttennode.Text; } }
private void thêmNToolStripMenuItem_Click(object sender, EventArgs e) { Cửa_sổ_thêm_node cuaso = new Cửa_sổ_thêm_node(); if (cuaso.ShowDialog() == DialogResult.OK) { if (tv_quanli.SelectedNode.Checked == false) // k ấn vào đâu thì chọn tạo mới root { TreeNode node = new TreeNode(cuaso.txttennode.Text); tv_quanli.Nodes.Add(node); } if (tv_quanli.SelectedNode != null) //tao nut con cua selectednode { TreeNode node = new TreeNode(cuaso.txttennode.Text); tv_quanli.SelectedNode.Nodes.Add(node); if (node.Level == 2) { node.ImageIndex = 2; node.SelectedImageIndex = 3; } } } }