如何在运行时将数据绑定到数据网格
本文关键字:数据 数据网 网格 数据绑定 运行时 | 更新日期: 2023-09-27 18:09:45
总之,我有一些测试代码,它们与一些定义为
的测试数据一起工作。private ObservableCollection<TestClass> _testData = new ObservableCollection<TestClass>();
public ObservableCollection<TestClass> TestData
{
get { return _testData; }
set { _testData = value; }
}
并在设计时通过
绑定<DataGrid x:Name="dataGrid" ItemsSource="{Binding TestData}".../>
我已经创建了一个DataGrid
在运行时通过
dataGrid.ItemsSource = BuildDataGridColumns(cultureDict).Tables[0].AsDataView();
private DataSet BuildDataGridColumns(Dictionary<string, string> cultureDict,
DataTable additionalDt = null)
{
// ...
}
这工作得很好,然而,更新用于处理测试数据的网格视觉效果的代码不再由于(我相信)ItemsSource="{Binding TestData}"
缺席。应该绑定插入TextBox
和DataGrid
单元格中的文本的XAML是:
<DataGrid x:Name="dataGrid"
local:DataGridTextSearch.SearchValue="{Binding ElementName=searchBox, Path=Text, UpdateSourceTrigger=PropertyChanged}"
AlternatingRowBackground="Gainsboro" AlternationCount="2" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
<DataGrid.Resources>
<local:SearchValueConverter x:Key="searchValueConverter" />
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="local:DataGridTextSearch.IsTextMatch">
<Setter.Value>
<MultiBinding Converter="{StaticResource searchValueConverter}">
<Binding RelativeSource="{RelativeSource Self}" Path="Content.Text" />
<Binding RelativeSource="{RelativeSource Self}" Path="(local:DataGridTextSearch.SearchValue)" />
</MultiBinding>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="local:DataGridTextSearch.IsTextMatch" Value="True">
<Setter Property="Background" Value="Orange" />
</Trigger>
</Style.Triggers>
</Style>
</DataGrid.Resources>
<DataGrid.CellStyle>
<Style TargetType="DataGridCell" >
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#FF007ACC"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
</Style.Triggers>
</Style>
</DataGrid.CellStyle>
</DataGrid>
我的问题是;
我如何创建
DataGrid
到我在运行时创建的数据集的相同绑定?
有人建议,原因是我的数据没有实现INotifyCollectionChanged
接口,但由于数据的可变性质,我必须在运行时将数据加载到DataGrid
中。
如果数据的结构可以改变,我如何将这些数据绑定到
DataGrid
作为实现INotifyPropertyChanged
的类?
感谢您的宝贵时间。
我认为Blam是对的。(抱歉,我还没有添加评论的权限。)在您的测试代码中,您使用一个ObservableCollection,它实现了INotifyPropertyChanged。DataGrid将获取对该集合的更改。您应该考虑在实际代码中使用ObservableCollection,并通过它更新数据,以便由绑定的DataGrid拾取,而不是直接通过DataGrid . itemssource。
https://stackoverflow.com/a/1581588/1082026 最后,您的代码可能看起来像这样(注意,您必须定义一个类DataItem,它将镜像DataSet的DataTable中的一行,特别是您的DataGrid关心的属性):private ObservableCollection<DataItem> dataItems= new ObservableCollection<DataItem>();
public ObservableCollection<DataItem> DataItems
{
get { return this.dataItems; }
set
{
this.dataItems = value;
base.OnPropertyChanged("DataItems");
}
}
使用这个绑定
<DataGrid x:Name="dataGrid" ItemsSource="{Binding TestData}".../>
如果你不想处理Add()和Remove(),你可以这样设置集合:
IList<DataItem> items = BuildDataGridColumns(cultureDict).Tables[0].AsDataView();
this.DataItems = new ObservableCollection<DataItem>(items);
...
private IList<DataItem> BuildDataGridColumns(Dictionary<string, string> cultureDict,
DataTable additionalDt = null)
{
// ... here create a list of DataItems from your table, and return it.
}
希望有帮助!