在旧版本的WPF中,无法在syncfusion的sfdatagrid中搜索和选择记录

时间:2018-03-27 11:19:39

标签: c# wpf syncfusion

我使用的是syncfusion版本13.34000.0.7,其中没有搜索和选择的便利性。它只适用于最新版本。

我想在旧版本上使用此结果。

enter image description here

最新版本中唯一可以实现此功能的代码是SearchHelper:

private void searchTextBox_TextChanged(object sender, TextChangedEventArgs e)
{
    text = (e.Source as TextBox).Text.ToLower();
    this.datagrid.SearchHelper.Search(text);
    datagrid.SearchHelper.FindNext(text);
    SetSelectedItem();
}

请任何人告诉我如何在旧版本上执行此操作。提前致谢!

1 个答案:

答案 0 :(得分:0)

由于复杂性,我们无法合并13.34000.0.7分支中的Search实现。因此,请升级到最新的Syncfusion版本以使用Search实现。

此致 Jai Ganesh S