Can't include extended WPF

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.

    http://fs1.directupload.net/images/141206/nx62yqa2.png

    so what are I am doing wrong?


    As @rshepp points out in the comments, it's much easier to install the WPF Toolkit by Nuget package.

    Go to Tools -> Nuget Package Manager -> Package Manager Console.

    Type Install-Package Extended.Wpf.Toolkit in the console window.

    链接地址: http://www.djcxy.com/p/34562.html

    上一篇: 导航到其他页面IocContainers和MVVM灯

    下一篇: 不能包含扩展的WPF