6-11 Flashcards

(19 cards)

1
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What tool displays an error icon beside a control to indicate invalid input?

A

ErrorProvider – Validates user input without message boxes using SetError().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which tool is used to write or read from the system’s event logs?

A

EventLog – Logs events for diagnostics using WriteEntry().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What tool watches files/folders for changes like create or delete?

A

FileSystemWatcher – Monitors file system changes; uses Changed, Created, Deleted, Renamed events.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What container automatically arranges child controls in a flow?

A

FlowLayoutPanel – Organizes controls horizontally or vertically using FlowDirection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which dialog box allows users to choose folders from the system?

A

FolderBrowserDialog – Opens a folder selection dialog via ShowDialog().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What tool is used to allow users to pick font styles and sizes?

A

FontDialog – Lets users choose font with ShowDialog() and Font property.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What container is used to group related controls together visually?

A

GroupBox – Organizes UI elements, has a Text label.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which tool is used to provide help info to users?

A

HelpProvider – Associates help strings or files with controls.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What horizontal tool allows scrolling through content left and right?

A

HScrollBar – Scroll bar using Value, Minimum, and Maximum properties.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What tool stores and manages a collection of images for other controls?

A

ImageList – Holds images for controls like ListView; set ImageSize, Images.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which tool displays static, non-editable text?

A

Label – Simple text display using Text and AutoSize.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What label acts like a clickable hyperlink?

A

LinkLabel – Opens links; uses LinkClicked event.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What control displays a list of selectable items in a vertical box?

A

ListBox – Uses Items, SelectedIndex, and SelectionMode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which control displays items with icons and details?

A

ListView – Has views like Details, LargeIcon; supports Columns, Items.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What textbox restricts user input to a specific format like date or phone?

A

MaskedTextBox – Uses the Mask property to enforce input formats.

17
Q

What tool creates a top menu bar with dropdowns like File, Edit, etc.?

A

MenuStrip – Menu container using Items and Dock.

18
Q

What messaging tool allows queuing of messages between apps?

A

MessageQueue – Uses MSMQ for asynchronous messaging with Send()/Receive().

19
Q

What control lets users select dates from a calendar UI?

A

MonthCalendar – Uses SelectionStart and SelectionEnd.