Errata

XAML in a Nutshell

Errata for XAML in a Nutshell

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 1
throughout book

The namespace for XAML is now "http://schemas.microsoft.com/winfx/2006/xaml/presentation".

Anonymous   
Printed Page 9
Example 2-1

In the February CTP, StartupUri is not a supported element for the NavigationWindow
application element.

Anonymous   
Printed Page 56
Example 4.5

First Edition, March 2006

Grid.ColumnDefinitions and Grid.RowDefinitions should surround Column and Row Definition statements.

<Grid ShowGridlines="true">
<Grid.ColumnDefinitions>
</ColumnDefinition Width="Auto">
<Grid.ColumnDefinitions />
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
...
</Grid.RowDefintions>
...


< /Grid>


Neil Tevepaugh  Dec 23, 2008 
Printed Page 77
4th para + example 6-2

"Red" is incorrectly used as the attribute name "Color" - ie,
"(Button.Background).(SolidColorBrush.Red)" ought to be
"(Button.Background).(SolidColorBrush.Color)"

Anonymous