gpt4 book ai didi

c# - 如何使用 xaml 将数据网格绑定(bind)到 collectionviewsource

转载 作者:行者123 更新时间:2023-11-30 14:54:34 24 4
gpt4 key购买 nike

我有一个绑定(bind)到 collectionviewsource 的数据网格,它绑定(bind)到一个 observablecollection。按照指南,我将其设置如下:

我的 Persons 类:

public class Persons : ObservableCollection<Person>
{
//...
}

xaml 数据绑定(bind):

<Window.Resources>
<local:Persons x:Key="_Persons"/>
<CollectionViewSource x:Key="cvsPersons" Source="{StaticResource _Persons}" />
</Window.Resources>

数据网格绑定(bind):

 <DataGrid x:Name="myDataGrid" ItemsSource="{Binding Source={StaticResource cvsPersons}}"/>

背后的代码:

_Persons = (Persons)this.Resources["_Persons"];
_persons = //some method to fill perons;
cvsPersons = (CollectionViewSource)this.Resources["cvsPersons"];
cvsPersons.Source = _Persons;

以上作品。 我的问题是,为什么我需要在后面的代码中使用 cvsPersons.Source = _Persons; 设置 collectionviewsource.source?我认为我第一个片段中的 xaml 完成了这项工作:

_cvsPersons.Source = _Persons;  

如果我需要所有这些代码在后面,那么 xaml 数据绑定(bind)代码似乎没有什么用处,我还不如在代码后面做所有事情。根据我(也许很少)的理解,代码隐藏中唯一需要的代码是引用 xaml 设置的实例,即:

_Persons = (Persons)this.Resources["_Persons"];
_persons = //some method to fill perons;
cvsPersons = (CollectionViewSource)this.Resources["cvsPersons"];

如果我没有 _cvsPersons.Source = _Persons;那么我的数据网格就不会被填充。我目前的 xaml 无法完成这项工作。我想我的问题更多的是与概念相关..

最佳答案

为了避免代码隐藏方法,您应该使用 MVVM 模式 MVVM Model View ViewModel .一个可能的解决方案是像这样的“人”(充当模型):

public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}

您可以实现一个 ViewModel,使用一个 ObservableCollection of Persons 来初始化一个属性。

public class ViewModel
{
public ObservableCollection<Person> Persons { get; set; }

public ViewModel()
{
Persons = new ObservableCollection<Person>();
}
}

您的 MainWindow.cs 现在必须初始化 ViewModel:

public partial class MainWindow : Window
{
public ViewModel ViewModel;

public MainWindow()
{
ViewModel = new ViewModel();

ViewModel.Persons.Add(new Person
{
Age = 29,
Name = "Mustermann"
});

ViewModel.Persons.Add(new Person
{
Age = 35,
Name = "Meyer"
});

this.DataContext = ViewModel;

InitializeComponent();
}

将 DataContext 设置为 ViewModel 对象很重要。我添加了一个按钮和添加一个人的方法。

    private void AddPersonOnClick(object sender, RoutedEventArgs e)
{
ViewModel.Persons.Add(new Person
{
Age = 55,
Name = "Sand"
});
}

现在您可以在 XAML 中实例化 CollectionViewSource 并将其绑定(bind)到 ViewModel 中的 Persons ObservableCollection 属性。

<Window x:Class="DataGridStackoverflow.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<CollectionViewSource x:Key="PersonsCollectionViewSource" Source="{Binding Persons}" />
</Window.Resources>

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>

<DataGrid Grid.Row="0" ItemsSource="{Binding Source={StaticResource PersonsCollectionViewSource}}" />
<Button x:Name="AddPerson" Grid.Row="1" Click="AddPersonOnClick" HorizontalAlignment="Left">Add Person</Button>
</Grid>

最后,您必须在将 ItemsSource 发布到 CollectionViewSource 时设置 ItemsSource,它的效果非常好。

编辑

我尝试了您的解决方案,效果也不错。主窗口.xaml:

    <Window.Resources>
<dataGridStackoverflow:Persons x:Key="Persons" />
<CollectionViewSource x:Key="PersonsCollectionViewSource" Source="{StaticResource Persons}" />
</Window.Resources>

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>

<DataGrid Grid.Row="0" ItemsSource="{Binding Source={StaticResource PersonsCollectionViewSource}}" />
<Button x:Name="AddPerson" Grid.Row="1" Click="AddPersonOnClick" HorizontalAlignment="Left">Add Person</Button>
</Grid>

InitializeComponent() 之后初始化 Persons 集合很重要。主窗口.cs

        InitializeComponent();
Persons persons = (Persons)this.FindResource("Persons");

persons.Add(new Person
{
Age = 23,
Name = "Dude"
});

此解决方案无需代码隐藏结构即可设置 ItemsSource。

关于c# - 如何使用 xaml 将数据网格绑定(bind)到 collectionviewsource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27227262/

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