Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
380
Doubt regarding Namespace
posted

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>