c# - Can't include extended WPF-Toolkit -
i use extended wpf toolkik(https://wpftoolkit.codeplex.com/) stupid include it.
i followed these steps:
- reference binaries in project:
reference wpftoolkit.extended.dll in project (xceed.wpf.datagrid.dll datagrid control) - add using statement ("using xceed.wpf.toolkit;" of controls, "using xceed.wpf.datagrid;" datagrid control) top of .cs files
- add new xmlns (xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" of controls, xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid" datagrid control) top of xaml files
the using-statement in cs-file working! in xaml-file can´t find toolkit!
i added this: xmlns:toolkit="http://schemas.xceed.com/wpf/xaml/toolkit"
namespace not exist.
http://fs1.directupload.net/images/141206/nx62yqa2.png
so doing wrong?
as @rshepp points out in comments, it's easier install wpf toolkit nuget package.
go tools -> nuget package manager -> package manager console.
type install-package extended.wpf.toolkit
in console window.
Comments
Post a Comment