You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/designers/walkthrough-my-first-wpf-desktop-application2.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ In this section, you'll create the application infrastructure, which includes th
55
55
56
56
1. In the **Properties** window, expand the **Common** category node and choose the **Title** property, and then enter `ExpenseIt` and press the **Enter** key.
57
57
58
-
Notice that the **Title**element in the XAML window changes to match the new value. You can modify XAML properties in either the XAML window or the **Properties** window, and the changes are synchronized.
58
+
Notice that the **Title**attribute in the XAML window changes to match the new value. You can modify XAML properties in either the XAML window or the **Properties** window, and the changes are synchronized.
59
59
60
60
1. In the XAML window, set the value of the **Height** element to `375`, and set the value of the **Width** property to `500`.
61
61
@@ -111,7 +111,7 @@ In this section, you'll add two pages and an image to the application.
111
111
112
112
1. In the designer, choose the **ExpenseItHome.xaml** tab if it isn't already the active designer tab.
113
113
114
-
1. Choose the `<Title>` element and change the title to **ExpenseIt - Home**.
114
+
1. Choose the `Title` attribute and change its value to **ExpenseIt - Home**.
115
115
116
116
Your **ExpenseItHome.xaml** file should now look like this in C#:
117
117
@@ -173,7 +173,7 @@ In this section, you'll add two pages and an image to the application.
173
173
174
174
1. In the designer, choose the **ExpenseReportPage.xaml** tab if it isn't already the active designer tab.
175
175
176
-
1. Choose the `<Title>` element and change the title to **ExpenseIt - View Expense**.
176
+
1. Choose the `Title` attribute and change its value to **ExpenseIt - View Expense**.
177
177
178
178
Your ExpenseReportPage.xaml file should now look like this in C#:
0 commit comments