2011-10-22 4 views
2

でDataGridのために、私はこれを行う: ​​ バインドエンティティはWinフォームでWPF

は、その後、私はWPFでこれを試みたが、データグリッドがちょうど空白の表示:

CollectionViewSource customerViewSource = (CollectionViewSource) FindResource("customerViewSource"); 
    using (vbdadvertisementEntities context = new vbdadvertisementEntities()) 
    { 
     var q = context.customers; 
     customerViewSource.Source = q; 
    } 

XAML:

<Window x:Class="VBDAdvertisement.WCustomerMain" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     Title="WCustomerMain" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Height="379" Width="654" xmlns:my="clr-namespace:VBDAdvertisement" Loaded="Window_Loaded"> 
    <Window.Resources> 
     <CollectionViewSource x:Key="customerViewSource"/> 
    </Window.Resources> 
    <Grid DataContext="{StaticResource customerViewSource}"> 
     <Grid.RowDefinitions> 
      <RowDefinition Height="56*" /> 
      <RowDefinition Height="284*" /> 
     </Grid.RowDefinitions> 
     <DataGrid AutoGenerateColumns="False" Grid.Row="1" Name="MainDataGrid" DataContext="{Binding}" /> 
    </Grid> 
</Window> 

答えて

4

ItemsSourceを指定する必要があります.DataContextを指定するだけで、contデータバインディングのためのext。

と同様に、

<DataGrid AutoGenerateColumns="False" Grid.Row="1" Name="MainDataGrid" ItemsSource="{Binding}" /> 
+0

ともあなたは(XAMLまたは分離コード経由)DataGridのあなたは、列を指定していない場合は、true – whoisthis

+0

にAutoGenerateColumnsを設定し、多くのおかげでそれを手に入れました! – JatSing

関連する問題