在WPF中将数据源视图绑定到Datagrid

时间:2014-11-11 17:53:54

标签: c# wpf xaml datagrid

我正在尝试将数据显示在DataGrid中。我正在使用SQL Server 2012和Visual Studio 2010并使用WPF应用程序。

我创建了一个新的数据源,我选择了一个" View"我在SQL Server中创建的。我在数据窗格中选择了该视图的下拉列表。我选择了下拉列表并单击了DataGrid。然后我将其拖动到用户控件。当我运行应用程序时,标题显示但结果集不显示。当我在SQL Server中运行视图时,它返回一个结果集。我做错了什么?

这是用户控件中的XAML

    <UserControl.Resources>
    <CollectionViewSource x:Key="myviewsViewSource" d:DesignSource="{d:DesignInstance my:myview, CreateList=True}" />
</UserControl.Resources>
<Grid DataContext="{StaticResource myviewsViewSource}">
    <DataGrid AutoGenerateColumns="False" EnableRowVirtualization="True" Height="200" HorizontalAlignment="Left" ItemsSource="{Binding}" Margin="561,121,0,0" Name="myviewsDataGrid" RowDetailsVisibilityMode="VisibleWhenSelected" VerticalAlignment="Top" Width="400">
        <DataGrid.Columns>
            <DataGridTextColumn x:Name="mnemonicColumn" Binding="{Binding Path=Mnemonic}" Header="Mnemonic" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="nameColumn" Binding="{Binding Path=Name}" Header="Name" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="toolColumn" Binding="{Binding Path=Tool}" Header="Tool" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="filterColumn" Binding="{Binding Path=Filter}" Header="Filter" Width="SizeToHeader" />
            <DataGridTemplateColumn x:Name="createdColumn" Header="Created" Width="SizeToHeader">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <DatePicker SelectedDate="{Binding Path=Created, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTextColumn x:Name="typeColumn" Binding="{Binding Path=Type}" Header="Type" Width="SizeToHeader" />
        </DataGrid.Columns>
    </DataGrid>
</Grid>        

这是我的C#代码:

    public partial class ScanControl : UserControl
{
    public ScanControl()
    {
        InitializeComponent();
    }       

    private void UserControl_Loaded_1(object sender, RoutedEventArgs e)
    {
        if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))
        {
            //Load your data here and assign the result to the CollectionViewSource.
            System.Windows.Data.CollectionViewSource myCollectionViewSource = (System.Windows.Data.CollectionViewSource)this.Resources["myviewsViewSource"];
        }
    }
}        

1 个答案:

答案 0 :(得分:0)

为了数据绑定,你缺少一些东西。

1)确保已将DataContext设置为DataContext="{Binding RelativeSource={RelativeSource Self}}"

2)您需要将DataGrid中的ItemsSource绑定更改为:ItemsSource="{Binding SomePropertyName}"

3)你需要实现`INotifyPropertyChanged'

4)要实现此属性,请使用以下命令:

    #region INotifyPorpertyChanged Memebers 

    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChanged(string propertyName = "")
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }

    #endregion

5)创建一个DB返回的对象类型ObservableCollection的属性。此属性是DataGrid所包含的属性。

例如:

private ObservableCollection<SomeDataType> _myPrivateData;
public ObservableCollection<SomeDataType> SomePropertyName { get { return _myPrivateData; } set    { _myPrivateData= value; NotifyPropertyChanged("SomePropertyName"); } }

负责数据绑定部分。现在每次重置DataGrid绑定到DataGrid的集合都会更新,因为调用了NotifyPropertyChanged。