Choose color from ColorDialog box

How we can choose the color from a ColorDialog box?

E

Expert

Verified

To choose color from a color dialog box, we must create the instance of a ColorDialog box and invoke to the ShowDialog() method. Code to display color dialog box and put the BackColor property of a Label control similar to a color selected in a color dialog box control is as follows:

private void button1_Click(object sender, EventArgs e)

{

 if (colorDialog1.ShowDialog() != DialogResult.Cancel)

 {

 label1.Text = "Here's my new color!";

 label1.BackColor = colorDialog1.Color; 

 }

}

   Related Questions in DOT NET Programming

©TutorsGlobe All rights reserved 2022-2023.