vb.net treeview containskey

时间:2017-12-20 00:36:50

标签: vb.net treeview

我尝试为不复制树视图节点做代码。

我的代码:

If TreeView1.Nodes.ContainsKey("AAA") Then
     MsgBox("have")
Else
     TreeView1.Nodes.Add("AAA")
End If

只是添加,不要说“有”

我之前的代码:

Using Comm As New System.Data.SQLite.SQLiteCommand(Conn)
                    Comm.CommandText = "SELECT * FROM trabalhos WHERE matricula='" + MaskedTextBox1.Text + "' ORDER BY data DESC;"

                    Dim Adapter As New System.Data.SQLite.SQLiteDataAdapter(Comm)
                    Dim DataTable As New System.Data.DataTable()
                    Adapter.Fill(DataTable)
                    For Each Row As DataRow In DataTable.Rows

                        If TreeView1.Nodes.ContainsKey("AAA") Then
                            MsgBox("have")
                        Else
                            TreeView1.Nodes.Add("AAA")

                        End If

                    Next
                End Using

感谢您的帮助。

0 个答案:

没有答案