I want to add Transparent Color to my ColorDialog.
I tried this code :
MyDialog.CustomColors = new int[] { Color.Transparent.ToArgb() };
MyDialog.ShowDialog();
string hex = ColorTranslator.ToHtml(MyDialog.Color);
MessageBox.Show(hex);
But, when I pick my Custom Color (I mean Transparent), the messageBox show me "White" instead of "Transparent". convert to White itself. But I want to pick Transparent. How can I do that?
My guess is that it is showing the colour behind. Please post your control XAML to be sure.
A common workaround to that is to put a chequerboard pattern behind your swatch control, so that as the alpha is decreased, the chequer shows through. Otherwise, how else do you show something that has no visibility?