Reputation: 519
I have an application where the System.Windows.Forms.ColorDialog dialog box is used as a color picker. Is there anyway that I can either (1) save the swatches the user saves in the "Custom Colors" section of this dialog or (2) create a standard set of swatches that all users would see when they open the color picker?
Upvotes: 2
Views: 1609
Reputation: 17041
I have a UserControl that just stores the RGB values for each swatch. You could easily store Custom swatches like that, as well.
Edit: Oh, and to actually answer your question, take a look at:
Upvotes: 1