|
⇤ ← Revision 1 as of 2016-09-12 21:07:40
Size: 426
Comment:
|
Size: 632
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| = Chapter X Notes = | = Chapter 7 Notes = |
| Line 3: | Line 3: |
| Title: '''Deepter into text''' | Title: '''XAML vs. Code''' |
| Line 7: | Line 7: |
| So much ado about Labels and the text in them. | * XAML is a better way to write up the "view" part of MVVM. * XAML is used to write the tree-structured visual user interface |
| Line 9: | Line 10: |
| === Programming Concepts Summary === | |
| Line 11: | Line 11: |
| || '''Concept''' || '''Page''' || | == Concepts Not in programs == Converters are addons to classes that convert to a specific type. {{{#!csharp [TypeConverter (typeof(ColorTypeConverter))] public struct Color { … } }}} |
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.
