WpfDatagrid Collectionviewsource 清除

发布于 2024-10-15 15:32:55 字数 224 浏览 1 评论 0原文

我正在使用 wpftoolkit 数据网格控件,该控件使用 collectionviewsource 进行绑定以进行记录分组。每当用户尝试清除表单时,我也需要清除数据网格。 我尝试将 datagrid itemsource 设置为 null,但它可以很好地实现清晰的功能。如果用户尝试将任何记录添加到 datagrid,则它不会加载。

那么任何人都可以为我提供一种清除数据网格的解决方案吗?

提前致谢。

I am using wpftoolkit datagrid control which was binding using collectionviewsource for records grouping. Whenever user trying to clear the form i need to clear the datagrid also.
I tried to set datagrid itemsource to null but it works fine for clear functionality .if user trying to add any records to datagrid it's not loading.

So could any one please provide me a solution to clear the datagrid.

Thanks In Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光礼记 2024-10-22 15:32:55

我在这种情况下使用 ObservableCollection。
示例:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        this.items = new ObservableCollection<Item>(
            Enumerable.Range(0, 10).Select(i => new Item {Id = i, Title = "str " + i}));
        this.viewSource = new CollectionViewSource() { Source = this.items };

        dataGrid1.ItemsSource = this.viewSource.View;
    }

    private ObservableCollection<Item> items;
    private CollectionViewSource viewSource;

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        items.Clear();
        //or
        //((ObservableCollection<Item>)viewSource.Source).Clear();
    }

    public class Item
    {
        public int Id { get; set; }
        public string Title { get; set; }
    } 
}

Xaml:

<Button HorizontalAlignment="Center" Content="Clear" Click="Button_Click"/>
<DataGrid AutoGenerateColumns="True" Name="dataGrid1" />

I use ObservableCollection for this type of situations.
Example:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        this.items = new ObservableCollection<Item>(
            Enumerable.Range(0, 10).Select(i => new Item {Id = i, Title = "str " + i}));
        this.viewSource = new CollectionViewSource() { Source = this.items };

        dataGrid1.ItemsSource = this.viewSource.View;
    }

    private ObservableCollection<Item> items;
    private CollectionViewSource viewSource;

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        items.Clear();
        //or
        //((ObservableCollection<Item>)viewSource.Source).Clear();
    }

    public class Item
    {
        public int Id { get; set; }
        public string Title { get; set; }
    } 
}

Xaml:

<Button HorizontalAlignment="Center" Content="Clear" Click="Button_Click"/>
<DataGrid AutoGenerateColumns="True" Name="dataGrid1" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文