Skip to content

Commit 8d206e7

Browse files
authored
Merge pull request #1554 from Altlock/patch-1
Fix 2 XAML copy mistakes
2 parents a749c28 + c0e5ade commit 8d206e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/vs-2015/designers/walkthrough-my-first-wpf-desktop-application2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ a name="introduction"></a> This walkthrough provides an introduction to Windows
174174
Or like this in Visual Basic:
175175

176176
```xaml
177-
NavigationWindow x:Class="MainWindow"
177+
<NavigationWindow x:Class="MainWindow"
178178
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
179179
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
180180
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
@@ -203,7 +203,7 @@ a name="introduction"></a> This walkthrough provides an introduction to Windows
203203
Your ExpenseReportPage.xaml file should now look like this in C#:
204204

205205
```xaml
206-
Page x:Class="ExpenseIt.ExpenseReportPage"
206+
<Page x:Class="ExpenseIt.ExpenseReportPage"
207207
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
208208
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
209209
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

0 commit comments

Comments
 (0)