WPF,独立于数据网格使用来自数据网格的数据

时间:2019-02-22 14:40:43

标签: c# wpf wpfdatagrid

我需要从数据网格获取数据,并独立于数据网格使用这些数据。

我在XAML中写道:

<Window x:Class="DatagridExample1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:DatagridExample1"
    mc:Ignorable="d"
    Title="MainWindow" Height="450" Width="800">
<Grid>
    <Button x:Name="button" Content="Button" HorizontalAlignment="Left" Height="26" Margin="10,0,0,0" VerticalAlignment="Top" Width="774" Click="button_Click"/>
    <DataGrid x:Name="dg" HorizontalAlignment="Left" Height="379" Margin="10,31,0,0" VerticalAlignment="Top" Width="774" SelectionChanged="dg_SelectionChanged"  AutoGenerateColumns="False" SelectionUnit="CellOrRowHeader" CanUserAddRows="False">
        <DataGrid.Columns>
            <DataGridTextColumn Header="Reference" Binding="{Binding Reference}" IsReadOnly="True"/>
            <DataGridTextColumn Header="Value" Binding="{Binding Value}" Width="*"/>
            <DataGridTextColumn Header="PartName" Binding="{Binding PartName}" Width="*"/>
         </DataGrid.Columns>
    </DataGrid>         

</Grid>

书面的课堂部分如下:

public class Part
{
    public Part()
    {
    }

    public string Reference { get; set; }
    public string Value { get; set; }
    public string PartName { get; set; }
}

之后,我编写了一个带有Part对象的集合,填充这些集合并将其推入datagrid中。

    public  List<Part> list;
    public MainWindow()
    {
        Part p1 = new Part() { Reference = "R1", Value = "10R", PartName = "10R 0402" };

        Part p2 = new Part() { Reference = "R2", Value = "10R", PartName = "10R 0402" };
        Part p3 = new Part() { Reference = "R3", Value = "10R", PartName = "10R 0402" };
        list = new List<Part>(){};
        list.Add(p1);
        list.Add(p2);
        list.Add(p3);
        list.Add(p1);

        InitializeComponent();

        dg.ItemsSource = list;        

    }

这部分没问题。运行程序后,我可以看到我的表:(请参阅链接中的图像) Main window: correct table

之后,我单击按钮并运行以下代码:

    private void button_Click(object sender, RoutedEventArgs e)
    {
        List<Part> oldList = (dg.ItemsSource as List<Part>);
        Part[] p = oldList.ToArray();

        p[0].Reference += p[1].Reference;


    }

看起来不错。我只使用数组“ p ”,而没有使用“ dg ”,但是当我对表中的列进行排序时。我真的很困惑,因为“ dg ”中的数据已更改。 如何以及为什么? 我怎样才能解决这个问题。因为我需要使用独立于数据网格的数组。

Why data in dg changed, when i didnt work with datagrid?

1 个答案:

答案 0 :(得分:0)

发生这种情况是因为您正在更改对象本身。

创建新的List并不重要,因为它是内存中相同引用的列表。更改任何值后,它都会反映在显示这些对象的网格中。

如果您想“玩”那些对象,而那些对象没有发生变化以反映网格,则需要新的对象。您需要将它们复制到其他参考。

检查以下内容:Creating a copy of an object in C#