Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't include extended WPF-Toolkit

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:

  1. Reference the binaries in your project:
    Reference WPFToolkit.Extended.dll in your project (Xceed.Wpf.DataGrid.dll for the datagrid control)
  2. 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
  3. 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?

like image 267
user3490546 Avatar asked Dec 06 '14 09:12

user3490546


People also ask

How do I add Extended WPF toolkit to Toolbox?

Go to the toolbox tab (ctrl+alt+x), right click on it and "Add Tab", type the name you want for it (ex: "WPF Extended Toolkit"). And.. that's it. Glad to hear that, enjoy the extended toolkit.

Is Extended WPF toolkit free?

Starting at v4. 0.0, this free toolkit is provided under the Xceed Community License agreement(for non-commercial use).

What is Extended WPF toolkit?

Extended WPF Toolkit is the number one collection of WPF controls, components and utilities for creating next generation Windows applications. Provides 48 controls, all offered under the Xceed Software Inc Community License. v4. 4.0 provides 17 bug fixes and improvements, including the . NET5/6 dlls.


2 Answers

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.

like image 156
pete the pagan-gerbil Avatar answered Oct 05 '22 10:10

pete the pagan-gerbil


I wouldn't use the codeplex version any more. There are newer versions available at GitHub and they can be easyly installed from VS.

Fork of WpfExToolkit (except Xceed Avalon Dock) on GitHub

Name at nuget: DotNetProjects.Extended.Wpf.Toolkit

Fork of AvalonDock (formerly in Xceed WpfExToolkit) on GitHub

As of September 2020 the free version of the original Xceed Toolikit does not contain the DataGrid and the AvalonDock any more. The version 3.8 ist still downloadble and usuable in any projects. The version 4.0 must not be used in commercial projects.

Orignal Xceed Toolkit (3.8 and the newer versions)

Xceed announces that the version 3.8 will be only available until December 31st, 2020

To clarify the situation and give everyone the advance notice that should have been given before changing our licensing model, we have decided to re-publish the last version of the Extended Toolkit (v3.8) as per the initial MS-PL license with the original terms, until December 31st, 2020. This will be the last version to be released under such license, and the next release will be under our new community license, which only allows non-commercial use.

like image 41
marsh-wiggle Avatar answered Oct 05 '22 12:10

marsh-wiggle