gpt4 book ai didi

mysql - 过滤 DataGrid 中的数据

转载 作者:行者123 更新时间:2023-11-29 10:58:29 25 4
gpt4 key购买 nike

我如何过滤我的数据网格之一中的数据,例如:

我有一个 mysql 类:

Public Function getArtikli() As DataTable
Dim query As String = "select id,named,group,art,vpc,mpc,currency,foot,pc from demo.artikli"
Dim table As New DataTable()
Using connection As New MySqlConnection(konekcija)
Using adapter As New MySqlDataAdapter(query, connection)

adapter.Fill(table)
Return table
End Using
End Using
End Function

这是 mainwindow.vb 中的函数

Private Function fillGrids()
gornjiGrid.ItemsSource = mysql.getArtikli().DefaultView
gornjiGrid.Items.Refresh()
End Function

我想使用以下文本框的 textchanged 事件过滤名为“gornjiGrid”的网格中返回的行:

Private Sub textBox1_Copy1_TextChanged(sender As Object, e As TextChangedEventArgs) Handles textBox1_Copy1.TextChanged
'mysql.getArtikli().DefaultView.RowFilter = " name like '*" & textBox1_Copy1.Text & "*'"
End Sub

最后这是我的数据网格 xml:

<DataGrid ItemsSource="{Binding gornjiGrid}" x:Name="gornjiGrid"  Margin="376,141,15,0" FontSize="12" Height="126" VerticalAlignment="Top"/>

最佳答案

我强烈建议您对 WPF 应用程序使用 MVVM 模式。将 ListCollectionView 用于 DataGrid.ItemsSource,将 ObservableCollection(Of ...) 用于 ListCollectionView 的项目。然后使用 ListCollectionView.Filter 谓词来过滤 DataGrid 中的项目。您将对当前的老式 Windows 窗体方法感到非常失望和愤怒。

关于mysql - 过滤 DataGrid 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42649474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com