要將數據添加到WPF DataGrid,需要以下步驟:
創建一個數據源:可以是一個類或一個集合,該類或集合包含將在DataGrid中顯示的數據。
創建DataGrid并設置其ItemsSource屬性為數據源。
在數據源中添加數據。
下面是一個簡單的示例,演示如何添加數據到DataGrid:
XAML代碼:
<Window x:Class="WpfApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="450" Width="800">
<Grid>
<DataGrid x:Name="dataGrid" AutoGenerateColumns="True" />
</Grid>
</Window>
C#代碼:
using System.Collections.ObjectModel;
using System.Windows;
namespace WpfApp
{
public partial class MainWindow : Window
{
public ObservableCollection<Person> People { get; set; }
public MainWindow()
{
InitializeComponent();
People = new ObservableCollection<Person>();
dataGrid.ItemsSource = People;
// 添加數據
People.Add(new Person("John", "Doe"));
People.Add(new Person("Jane", "Smith"));
}
}
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Person(string firstName, string lastName)
{
FirstName = firstName;
LastName = lastName;
}
}
}
在上述示例中,我們創建了一個名為Person的簡單類,該類具有FirstName和LastName屬性。然后,我們在MainWindow的構造函數中創建了一個ObservableCollection