Вы можете использовать простой список объектов.Затем создайте DataGrid и привяжите к нему DataRecordList.Внешний интерфейс должен выглядеть следующим образом:
<Window x:Class="TestDataGrid.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Data="clr-namespace:TestDataGrid"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<ResourceDictionary>
<Data:DataRecordList x:Key="DataSource"/>
<CollectionViewSource x:Key="DataCollection" Source="{StaticResource DataSource}"/>
</ResourceDictionary>
</Window.Resources>
<Grid>
<DataGrid Name="GridData"
ItemsSource="{Binding Source={StaticResource DataCollection}}"
AutoGenerateColumns="False"
CanUserDeleteRows="True" CanUserAddRows="True">
<DataGrid.Columns>
<DataGridTextColumn Header="ID" Binding="{Binding Path=ID}"/>
<DataGridTextColumn Header="Name" Binding="{Binding Path=Name}"/>
<DataGridTextColumn Header="SomeValue" Binding="{Binding Path=SomeValue}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Window>
и код, подобный следующему:
namespace TestDataGrid
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
public class DataRecord
{
public int ID { get; set; }
public string Name { get; set; }
public string SomeValue { get; set; }
}
public class DataRecordList : List<DataRecord>
{
public DataRecordList()
{
this.Add(new DataRecord() { ID = 1, Name = "Johnny", SomeValue = "Dummy" });
this.Add(new DataRecord() { ID = 2, Name = "Grace", SomeValue = "Foo" });
this.Add(new DataRecord() { ID = 3, Name = "Steve", SomeValue = "Bar" });
}
}
}
Вы можете добавлять строки, удалять строки и даже редактировать строки, а также сортировать и изменять порядок столбцов.Наслаждаться.JiKra