Hi...
I downloaded one sample program using wpf grid In that program they added this following namespace..
I m trying to build that program means it showing error..
I have to add WPFtollkit reference. from Where i can add this reference??
Can u suggest some answer.I have infragistics 9.1 version.
xmlns
:dg=http://schemas.microsoft.com/wpf/2008/toolkit
they are using this namespace here like this..it is giving error..
<
dg:DataGrid ItemsSource="{Binding Source={StaticResource Customers}}" Name="dataGrid" AutoGenerateColumns="False"
SelectionChanged="dataGrid_SelectionChanged">
<dg:DataGrid.Columns>
<dg:DataGridTextColumn x:Name="IDColumn" Header="CustomerID" IsReadOnly="True" Binding="{Binding Path=ID}"/>
<dg:DataGridTextColumn Header="CompanyName" Binding="{Binding Path=CompanyName}"/>
<dg:DataGridTextColumn Header="ContactName" Binding="{Binding Path=ContactName}"/>
</dg:DataGrid.Columns>
</dg:DataGrid>
WPFToolkit datagrid is something different. Get it from http://wpf.codeplex.com/