gpt4 book ai didi

c# - 将 DataTable 绑定(bind)到 DataGrid。 WPF MVVM

转载 作者:行者123 更新时间:2023-11-30 16:42:49 24 4
gpt4 key购买 nike

我正在尝试将 Datatable 绑定(bind)到 Datagrid 上,以便能够动态填充它。Datagrid 似乎找到了数据表,因为当我填充它时以及在 RaisePropertyChanged 之后我有很多空白行。也没有列。

我的观点:

<UserControl x:Class="NWViewer.View.DataGridView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:NWViewer.View"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
DataContext="{Binding DataGrid, Source={StaticResource Locator}}">
<Grid>
<DataGrid ItemsSource="{Binding oTable.DefaultView}" AutoGenerateColumns="True" ColumnWidth="25">
</DataGrid>
</Grid>
</UserControl>

我的 View 模型:

public DataTable oTable { get;set;}

private void getNewData(List<ElementBaseViewModel> rootElement)
{
oTable.Clear();
foreach (var element in rootElement)
{
buildFromChildren(element);
}
RaisePropertyChanged("oTable");
}
private void buildFromChildren(ElementBaseViewModel element)
{
if(element.Children != null)
{
if (isAttributeChildren(element))
{
DataRow oRow = oTable.NewRow();
foreach (var attribute in element.AttributeChildren)
{
Model.Attribute attr = (Model.Attribute)attribute.Element;
if (!oTable.Columns.Contains(attr.name))
oTable.Columns.Add(attr.name);
oRow[attr.name] = attr.Value;
}
oTable.Rows.Add(oRow);
}
foreach (var elem in element.ElementChildren)
{
buildFromChildren(elem);
}
}
}

这是图形渲染:

Datagrid

但当我调试它时,DataTable 似乎已正确填充:

DataTable when debugging

最佳答案

问题很可能与 DataTable 初始化有关,DataGrid 将在设置新的 ItemsSource 时自动生成列,但它初始化后将列添加到基础表时不会重新生成列。

解决方案一:

在将 DataTable 绑定(bind)到 DataGrid 之前,在初始化时创建所有列。

解决方案 2:

强制刷新 ItemsSource。它应该像这样工作,但如果可能,我强烈推荐解决方案 1:

var tempTable = oTable;
oTable = null;
RaisePropertyChanged("oTable");
oTable = tempTable;
RaisePropertyChanged("oTable");

关于c# - 将 DataTable 绑定(bind)到 DataGrid。 WPF MVVM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45957388/

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