ツリー ビューには、DB からのデータが読み込まれます。選択したコンボ ボックス項目のツリー ビューをフィルター処理したい。誰かがこれを実行する方法を教えてくれますか?
public SelectorDataTreeView()
{
InitializeComponent();
button1.FlatStyle = FlatStyle.Flat;
comboBox1.Items.Add("HP");
comboBox1.Items.Add("DELL");
comboBox1.Items.Add("Cam");
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
String s = comboBox1.SelectedItem.ToString();
ExpandAll(MyTreeView.Nodes);
}
//TreeKey Finder
private TreeNode[] FindNode(String searchKey)
{
return MyTreeView.Nodes.Find(searchKey, true);
}
}