Differences between revisions 1 and 2
Revision 1 as of 2016-09-12 21:07:40
Size: 426
Editor: scot
Comment:
Revision 2 as of 2016-09-12 23:39:30
Size: 632
Editor: scot
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.

   1 [TypeConverter (typeof(ColorTypeConverter))]
   2 public struct Color
   3 {
   4 
   5 }

Programs

Program Baskervilles

Page 41.

Concepts:

  1. Shows that text wraps inside a label be default.
  2. Shows the use of Device.OnPlatform for padding.

Classes:

  1. Label is demonstrated.

ManagingAndProgrammingMobileApplications/Xamarin/Chapter 7 (last edited 2016-09-13 00:13:55 by scot)