0

这是我第一次使用 WPF 数据网格。据我了解,我应该将网格绑定到我的视图模型中的公共属性。下面是 ViewModel 代码,当我逐步完成调试器时,GridInventory 被设置为包含 2606 条记录的列表,但是这些记录从未显示在数据网格中。我究竟做错了什么?

public class ShellViewModel : PropertyChangedBase, IShell
{
    private List<ComputerRecord> _gridInventory;

    public List<ComputerRecord> GridInventory
    {
        get { return _gridInventory; }
        set { _gridInventory = value; }
    }

    public void Select()
    {
        var builder = new SqlConnectionBuilder();
        using (var db = new DataContext(builder.GetConnectionObject(_serverName, _dbName)))
        {
            var record = db.GetTable<ComputerRecord>().OrderBy(r => r.ComputerName);                
            GridInventory = record.ToList();
        }
    }
}

我的 XAML 是

<Window x:Class="Viewer.Views.ShellView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="InventoryViewer" Height="647" Width="1032" WindowStartupLocation="CenterScreen">
<Grid>
    <DataGrid x:Name="GridInventory" ItemsSource="{Binding GridInventory}"></DataGrid>
    <Button x:Name="Select" Content="Select" Height="40" Margin="600,530,0,0" Width="100" />
</Grid>
</Window>
4

4 回答 4

2

我认为您需要在 GridInventory 设置器中调用 raisepropertychanged 事件,以便视图可以得到通知。

public List<ComputerRecord> GridInventory
{
    get { return _gridInventory; }
    set 
    { _gridInventory = value; 
      RaisePropertyChanged("GridInventory");
    }
}
于 2012-06-14T23:39:49.340 回答
0

页面的数据上下文未绑定到视图模型的实例。在 InitializeComponent 调用后的代码中,分配数据上下文,例如:

InitializeComponent();

DataContext = new ShellViewModel();
于 2012-06-15T02:29:49.180 回答
0

我认为您应该在 ViewModel 和 Model 中使用 RaisePropertyChanged,并且还应该在 View 中设置 DataContext。

<Window.DataContext>    
    <local:ShellViewModel />    
</Window.DataContext>
于 2012-06-15T05:51:57.307 回答
0

您可能需要考虑使用绑定 ObservableCollection 到数据网格。然后你不需要维护一个私有成员 _gridInventory 和一个公共属性 GridInventory

//viewModel.cs
public ObservableCollection<ComputerRecord> GridInventory {get; private set;}
//view.xaml
<DataGrid ... ItemsSource="{Binding GridInventory}" .../>
于 2015-12-04T18:59:21.773 回答