Chapter 7 Notes
Title: XAML vs. Code
Summary
- XAML is a better way to write up the "view" part of MVVM.
- XAML is used to write the tree-structured visual user interface
Concepts Not in programs
Converters are addons to classes that convert to a specific type.
[TypeConverter (typeof(ColorTypeConverter))] public struct Color { … }
Programs
Program Baskervilles
Page 41.
Concepts:
- Shows that text wraps inside a label be default.
Shows the use of Device.OnPlatform for padding.
Classes:
- Label is demonstrated.