Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WPF 应用程序中,我需要实现方便用户从 SQL Server 数据库中快速轻松地搜索特定记录的可能性。
请您分享一下您对 WPF 工具包中 WPF 数据网格的过滤功能的经验和意见,与第三方数据网格进行比较?
WPF DataGrid 是一个 ItemsControl,因此您可以通过编程方式过滤任何您想要的东西 - 您只需给它一个 Predicate 来过滤 - 我确信内置 UI 不如 3rd-party Datagrid 控件好,但是您总是可以自己写。尽管使用 3rd 方网格可能值得您花时间(我个人发现 Xceed 相当不错)。
http://www.codeproject.com/KB/WPF/DataGridFilterLibrary.aspx?fid=1549078&fr=76#xx0xx
这就是我所需要的:)