Differences between revisions 6 and 7
Revision 6 as of 2016-09-12 23:43:53
Size: 1087
Editor: scot
Comment:
Revision 7 as of 2016-09-12 23:50:30
Size: 1579
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 14: Line 14:
'''Converter Classes''': Below the {{{Color}}} class has a {{{TypeConverter}}} attribute added. Attributes in this context means that the defined attributed class is added to the decorated class. That means that you may have additional properties because of the decoration. You might say that Color now has a TypeConverter object that is instantiated with a Type - in this case the: '''Converter Classes'''

Page 134

Below the {{{Color}}} class has a {{{TypeConverter}}} attribute added. Attributes in this context means that the defined attributed class is added to the decorated class. That means that you may have additional properties because of the decoration. You might say that Color now has a TypeConverter object that is instantiated with a Type - in this case the:
Line 23: Line 27:
    …
Line 26: Line 30:

'''Property-Element Syntax''':

Page 136

This section spells out how to translate some of the code we are used to writing into XAML. Specifically it identifies how XML elements and attributes map to objects and contents.

E.g.:
{{{<Frame ...> ... </Frame>}}} is a ''object element''
{{{<Frame.Content> ... </Frame.Content> is a ''property element''
In {{{<Frame VerticalOptions="Center" ...> ... </Frame>}}}, {{{VerticalOptions}}} is a property attribute.

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

Converter Classes

Page 134

Below the Color class has a TypeConverter attribute added. Attributes in this context means that the defined attributed class is added to the decorated class. That means that you may have additional properties because of the decoration. You might say that Color now has a TypeConverter object that is instantiated with a Type - in this case the: typeof(ColorTypeConverter)

This, of course, means that Color has additional functionality! We'll learn more about this later!

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

Property-Element Syntax:

Page 136

This section spells out how to translate some of the code we are used to writing into XAML. Specifically it identifies how XML elements and attributes map to objects and contents.

E.g.: <Frame ...> ... </Frame> is a object element {{{<Frame.Content> ... </Frame.Content> is a property element In <Frame VerticalOptions="Center" ...> ... </Frame>, VerticalOptions is a property attribute.

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)