Choosing a color for the Metro Style app?

I am trying to add ColorPicker to my metro style app. After doing a little research, I found that the Extended WPF Toolkit contains ColorPicker. But when I try to add the .dll file to my project via "Add Link", it says:

β€œThe project targets .NETCore, while the file link targets .NETFramework. This is not a supported script.”

My question is: how to add this dll file? Is it possible to compile this .dll, which is the target of .NETCore? And is there another (simple) way to implement Color Picker in the Metro Style app?

(I am completely new to WPF concepts. Please correct me if I make any mistake.)

+4
source share
2 answers

This is not Microsoft, and ColorPicker has not yet been done (it is described as "in development"), but you can try. http://winrtxamltoolkit.codeplex.com/

+1
source

I recently tested it, it works well in metro applications. if you do not work well, try adding the extended wpf file via Nuget Packages, it will work fine :)

0
source

Source: https://habr.com/ru/post/1443710/


All Articles