|
6 | 6 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
7 | 7 | xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
8 | 8 | xmlns:mvvmSampleUwp="using:MvvmSampleUwp"
|
| 9 | + xmlns:extensions="using:Microsoft.Toolkit.Uwp.UI.Extensions" |
9 | 10 | mc:Ignorable="d"
|
10 | 11 | d:DesignHeight="300"
|
11 | 12 | d:DesignWidth="400"
|
|
108 | 109 | <muxc:NavigationViewItem
|
109 | 110 | x:Name="RedditBrowserOverviewItem"
|
110 | 111 | Content="Putting Things Together"
|
111 |
| - Icon="Contact" |
| 112 | + Icon="{extensions:FontIcon Glyph=}" |
112 | 113 | ToolTipService.ToolTip="Examples of how to put multiple pieces together for building an app.">
|
113 | 114 | <muxc:NavigationViewItem.MenuItems>
|
114 | 115 | <muxc:NavigationViewItem
|
115 | 116 | x:Name="ViewModelsSetupItem"
|
116 |
| - Content="Setting up the ViewModels" Icon="Mail" ToolTipService.ToolTip="Mail"/> |
117 |
| - <muxc:NavigationViewItem Content="Creating a Service" Icon="Calendar" ToolTipService.ToolTip="Calendar"> |
| 117 | + Content="Setting up the ViewModels" |
| 118 | + Icon="{extensions:FontIcon Glyph=}" |
| 119 | + ToolTipService.ToolTip="Setting up viewmodels for the two widgets."/> |
| 120 | + <muxc:NavigationViewItem |
| 121 | + Content="Creating a Service" |
| 122 | + Icon="{extensions:FontIcon Glyph=}" |
| 123 | + ToolTipService.ToolTip="Build custom services to expand the app's functionalities."> |
118 | 124 | <muxc:NavigationViewItem.MenuItems>
|
119 |
| - <muxc:NavigationViewItem x:Name="SettingsServiceItem" Content="Settings service" Icon="Mail" ToolTipService.ToolTip="Mail" /> |
120 |
| - <muxc:NavigationViewItem x:Name="RedditServiceItem" Content="Reddit service" Icon="Mail" ToolTipService.ToolTip="Mail" /> |
| 125 | + <muxc:NavigationViewItem |
| 126 | + x:Name="SettingsServiceItem" |
| 127 | + Content="Settings service" |
| 128 | + Icon="Repair" |
| 129 | + ToolTipService.ToolTip="Implementing and injecting a settings service." /> |
| 130 | + <muxc:NavigationViewItem |
| 131 | + x:Name="RedditServiceItem" |
| 132 | + Content="Reddit service" |
| 133 | + Icon="World" |
| 134 | + ToolTipService.ToolTip="Injecting a service to use Reddit APIs." /> |
121 | 135 | </muxc:NavigationViewItem.MenuItems>
|
122 | 136 | </muxc:NavigationViewItem>
|
123 | 137 | <muxc:NavigationViewItem
|
124 | 138 | x:Name="BuildingTheUIItem"
|
125 |
| - Content="Building the UI" Icon="Mail" ToolTipService.ToolTip="Mail"/> |
126 |
| - <muxc:NavigationViewItem x:Name="FinalResultItem" Content="The final result!" Icon="Mail" ToolTipService.ToolTip="Mail"/> |
| 139 | + Content="Building the UI" |
| 140 | + Icon="{extensions:FontIcon Glyph=}" |
| 141 | + ToolTipService.ToolTip="Building the UI to connect to the backend."/> |
| 142 | + <muxc:NavigationViewItem |
| 143 | + x:Name="FinalResultItem" |
| 144 | + Content="The final result!" |
| 145 | + Icon="{extensions:FontIcon Glyph=}" |
| 146 | + ToolTipService.ToolTip="The final working sample!"/> |
127 | 147 | </muxc:NavigationViewItem.MenuItems>
|
128 | 148 | </muxc:NavigationViewItem>
|
129 | 149 | </muxc:NavigationView.MenuItems>
|
|
0 commit comments