Quest 3.31 Flashcards

1
Q

What does the Image control allow?

A

It allows you to display a single image and to resize the image as you see fit.

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

If the text in a TextBlock does not fit the space granted to the control, what will the control not provide?

A

scrollbars

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

Like checkboxes, TextBlocks display simple text without any complicated formatting.

A

F

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

TextBlock and Label controls are designed exclusively for displaying text to the user.

A

T

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

What do CheckBoxes present the user with?

A

Options that they can select or clear.

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

What are RadioButtons used with?

A

Other RadioButtons.

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

What does image control allow?

A

Allows you to display a single image and to resize the image as you see fit.

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

If you prefix a letter with an underscore, the letter will become underlined and it will be possible to access the control directly by using the prefixed letter and ‘Alt’

A

T

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

Which control is capable of displaying multiple lines of text and displays text even if it will not fit in the space granted to the control?

A

TextBlock

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

TextBlock and label controls are designed exclusively for displaying text to the user.

A

T

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

When using a TextBlock control, the TextWrapping is the default setting.

A

F

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

What TextBox property is set to false to prevent users from being able to edit it?

A

IsEnabled

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

What do CheckBoxes present the user with?

A

Options they can select or clear.

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

When should you use the Checkbox control?

A

If you have want to present an option to the user that can be turned on or off.

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

Checkboxes can also display a third state, known as ‘undetermined’

A

F

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

CheckBoxes can also display a third state known as ‘indeterminate’.

A

T

17
Q

When more than one CheckBox is displayed in the same view, they will, by default, know about each other and as soon as any one of them are selected, all the others are cleared.

A

F

18
Q

CheckBoxes are designed to be used as a single entity that is unaffected by other CheckBoxes on the view.

A

T

19
Q

How many different states can be used for a CheckBox?

A

3

20
Q

TextBoxes are commonly used to display long lists of values, such as country or state names.

A

F

21
Q

What are the two properties that are very important for the behavior of the control and work together to provide four possible ways for the user to select the value of the ComboBox using the keyboard?

A

IsReadOnly and IsEditable

22
Q

By default, each page is constructed of TabItems that are populated by a single Grid control, but you can change the Grid to any other control as you see fit.

A

T

23
Q

What is the layout control that is used to group controls on pages that can be selected by clicking on them?

A

TabControl

24
Q

What is a way of declaratively connecting controls with data?

A

data binding

25
Q

What are the four components of binding?

A

binding target, target property, binding source, source property.

26
Q

you can’t bind to any object.

A

T/F - You can bind to any .NET object

27
Q

How do you perform static binding to external objects?

A

Adding the namespace to the XAML to allow the class to be located, then declaring the class as a resource on an element in the XAML.

28
Q

What is DataContext control?

A

Defines a data source that can be used for data binding on all child elements of an element.

29
Q

ListBoxes and ComboBoxes can often be used for the same purpose. The main difference between them is ListBoxes can allow multiple item selections.

A

T

30
Q

ListBoxes can often be used for the same purpose as what control?

A

ComboBoxes