Visual Programming: Duhok Private Technical Institute
Visual Programming: Duhok Private Technical Institute
VISUAL
PROGRAMMING
( VISUAL C# )
Lecturer Ashraf
Lecture 3 1
Windows Programming
Using C#
Forms Programming I
✓ ComboBox
✓ CheckedBox
✓ CheckedListBox
2
ComboBox
• ComboBox is a combination TextBox with a drop-
down. Its drop-down list presents preset choices. The
user can type anything into the ComboBox.
Alternatively, he or she can select something from the
list.
Without Code:
1- Right-click on combobox
2- Properties
3- Items
4- Enter the strings one per line
5- Ok
By Code: Inserting
items to
combobox
}
Remove
items from
combobox
MessageBox.Show(checkedListBox1.SelectedItem.ToString()+'\n'+
comboBox1.SelectedItem.ToString() + '\n' +
listBox1.SelectedItem.ToString());
}