//获得选中的节点
TreeNodeCollection checkNodes = TreeView1.CheckedNodes;
//遍历选中的节点
foreach (TreeNode node in checkNodes)
{
string text = node.Text;
string value = node.Value;
}
不好意思,我也不会