I want to add a color palette to a WPF program I am working on. My first choice would be the "Edit Colors" dialog box from MS Paint, as shown in the image attached to this question. I have seen this dialog box in many different programs, leading me to believe it is some sort of standard control available to Windows apps. If that is the case, is there a way for me to access it using C# and the .NET Framework? Am I mistaken about where this control comes from? I am aware of several packages I can use to get color pickers such as WPF Toolkit Extended, but I was hoping I could use this one without adding any new packages to my project.
Asked
Active
Viewed 25 times
0
-
1You can use the same control from WinForms https://stackoverflow.com/a/63277504/1043380 – gunr2171 Mar 24 '22 at 12:21
-
Thanks. Is there any common practices regarding mixing Windows.Forms controls into WPF applications? Is that discouraged, or is it not really an issue if I do that? – Inglonias Mar 24 '22 at 12:28
-
https://stackoverflow.com/questions/43116708 – gunr2171 Mar 24 '22 at 12:29