What is the event that I can use to select and apply a color from the color dialog?
Thanks
Hi,
I don’t know of any event (I’m sure Frank or Luca will come along and correct me) but I use the colour dialog like this:
using (ColorDialog dlg = new ColorDialog())
{
dlg.Color = Color;
if(dlg.ShowDialog() == DialogResult.OK)
{
Color = dlg.Color;
}
}
HTH
Nic
Please login first to submit.