0

我想在 DataGrid 中显示不同的表。我不想为每个表创建一个 DataGrid。所以我必须从代​​码中动态添加 DataGrid 的 ItemsSource。如何ItemsSource="{Binding}"在 C# 代码中实现这一点(WPF)。

4

1 回答 1

1

将数据绑定设置为要绑定到的 ViewModel 上的属性...

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:this ="clr-namespace:WpfApplication1"
        Title="MainWindow" Height="350" Width="525">
    <DataGrid ItemsSource="{Binding CurrentTable}"/>
</Window>

设置数据上下文(我更喜欢在 Xaml 中进行,但这比我喜欢做的例子要多)...

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        DataContext = new MainWindowViewModel();
    }
}

在您的 ViewModel 上创建属性...

public class MainWindowViewModel : INotifyPropertyChanged
{
    private DataTable currentTable;

    public DataTable CurrentTable
    {
        get
        {
            return this.currentTable;
        }
        set
        {
            this.currentTable = value;
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs("CurrentTable"));
        }
    }

    public MainWindowViewModel()
    {
        DataTable table = new DataTable();
        table.Columns.Add("Column1");
        table.Columns.Add("Column2");
        table.Rows.Add("This is column1", "this is column2");

        CurrentTable = table;
    }

    public event PropertyChangedEventHandler PropertyChanged;
}

您现在要做的就是将 CurrentTable 属性设置为您想要的任何表,它将更新 UI 并显示它。

于 2013-07-05T19:08:29.397 回答