color extender question
how to change textbox color using a color picker extender i.e choose color from extender and textbox take that color,
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Syed ShanuPosted Apr 12, 2015, 9:04 PM
Button_Click
{
ColorDialog cd = new ColorDialog();
cd.ShowDialog();
Textbox1.BackColor = cd.Color;
}