Visual Programming using C#
Lecturer: Saman M. Almufti / Kurdistan Region, Nawroz University, (Visitor : Ararat Institute)
facebook: https://www.facebook.com/saman.malmufti
YouTube link: https://youtu.be/FQWjwFM6IDA
IN THIS LECTURE:
1- Introduction to ComboBox
2- Introduction to ListBox
3- Introduction to CheckedListBox
4-using \n to combine texts
1 of 12
Download to read offline
More Related Content
Vp lecture 4 ararat
2. 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.
6. ListBox stores several text items. It can interact with
other controls, including Button controls. We use this
control in Windows Forms. In the example program it
interacts with two Buttonsthrough the Button Click
event handler.
7. CheckedListBox presents several items in a list. Each
item is checkablethe user can check a box. The
CheckedListBox control in Windows Forms is a way to
make longer, dynamic checkable lists.