c# - Cannot press the advanced button in wpf toolkit color picker -
I'm used to add a color picker in your application. I have a problem that I could see the simple mode color picker without any problem at runtime, but when I click on the Advanced button, then I always get an exception:
File or assembly could not load 'WPFToolkit, PublicKeyToken = 31bf3856ad364e35' or a "WPFToolkit, PublicKeyToken = 31bf3856ad364e35"
I checked in dependency and make sure that the assembly is in the correct folder. How can I see the first part, but I can not see the second part?
Any idea is appreciated.
tells error that you disappear WPF Toolkit, which is different than the Extended WPF Toolkit.
In the download page of the Extended Toolkit, you are mentioned that you need to install WPF Toolkit.
.NET Framework 4.0 or require 4.5 is a build for .NET 3.5, but it also requires WPFToolkit to install.
WPF Toolkit can be found here:
Comments
Post a Comment