Chapter 13 – Building Universal Windows Platform Apps Using XAML
- Which control would you choose to allow the user to easily choose their date of birth on many different types of device?
The
DatePicker
control will allow the user to easily choose their date of birth on many different types of device. - Which XAML element would you use to adapt the layout of your app to handle different device families?
The
VisualStateManager
element is used to adapt the layout of your app to handle different device families. - How can you set multiple properties on an XAML element as a single group?
We can set multiple properties on an XAML element as a single group by defining a style with setters.
- What is the difference between a control template and a data template?
Control templates are used to define the look and feel of the external parts of a control, such as a button or list box. Data templates are used to define the look and feel of the internal content of a button or the items with a list box.
- Can XAML...