ColorDialog box
How a color is picked from the ColorDialog box?
Expert
In order to pick a color from color dialog box, it is required to create an instance of ColorDialog box and calls the ShowDialog() method. Code required to show the color dialog box and to set BackColor property of the Label control same as the color selected in the color dialog box control is:
private void button1_Click(object sender, EventArgs e) { if (colorDialog1.ShowDialog() != DialogResult.Cancel) { label1.Text = "Here's my new color!"; label1.BackColor = colorDialog1.Color; } }
Describe the function of a SizeMode property of a PictureBox control?
Write down the main core services of WWF runtime in brief.
Briefly describe about ASP.NET?
Explain two properties of GridView control which specifies to turn on paging and sorting.
Explain about object-oriented programming (OOP)?
List the types of data types that are present in .NET?
Illustrate the terms Authorization as well as Authentication?
Write the name of the parent class of a Web server control?
What is web.config file?
Explain Hashtable?
18,76,764
1942451 Asked
3,689
Active Tutors
1423248
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!