What components respond to actions from users such as mouse clicks, pressing keys on keyboards or placing the mouse cursor over user interface objects
What are the actions known as ? ( mouse click, pressing key on keyboards )
What does a Visual C# applications project start with? ( 3 )
What is the form basic width and height
What does the property window do?
What will be displayed in the column’s property list? ( 2 )
What is controls name
List out the rules for naming controls
List out 3 ways for how C# code is primarily organized?
What is a file that containes program code is called?
What source code file that is automatically created when creating a new project?
How does C# code is organized?
What does a program waits in event-driven programming?
Who controls the program response in event-driven programming?
List out 3 ways that the event can occur
List out 5 types of events
What is an event handler? ( 2 )
private void myButton_Click(object sender, EventArgs e)
{
}
What does a message box does?
What is the code for showing a message box?
What does a label do?
List out 6 commonly used properties
List out 9 values that the TextAlign property supports
How to change a property ( Change label text from “Hi” to “Hello” ) ?
label1.Text = “Hello”;
How to change the color properties?
label1.BackColor = Color.blue