I would like to use the extended wpf toolkik(https://wpftoolkit.codeplex.com/) but I am too stupid to include it.
I followed these steps:
- Reference the binaries in your project:
Reference WPFToolkit.Extended.dll in your project (Xceed.Wpf.DataGrid.dll for the datagrid control) - Add a using statement ("using Xceed.Wpf.Toolkit;" for most of the controls, "using Xceed.Wpf.DataGrid;" for the datagrid control) to the top of .cs files
- Add a new xmlns (xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" for most of the controls, xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid" for the datagrid control) to the top of XAML files
The using-statement in the cs-file is working! But in my xaml-file I can´t find the toolkit!
I added this: xmlns:toolkit="http://schemas.xceed.com/wpf/xaml/toolkit"
but this namespace does not exist.
so what are I am doing wrong?