-
Notifications
You must be signed in to change notification settings - Fork 110
/
AppShell.xaml
236 lines (223 loc) · 12.5 KB
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!--
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
-->
<Page x:Name="Root"
x:Class="RssReader.AppShell"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:RssReader"
xmlns:controls="using:RssReader.Controls"
xmlns:common="using:RssReader.Common"
xmlns:viewmodels="using:RssReader.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="{ThemeResource SystemControlBackgroundAltHighBrush}"
SizeChanged="Root_SizeChanged"
KeyDown="AppShell_KeyDown"
TabNavigation="Cycle"
mc:Ignorable="d">
<!-- Using a Page as the root for the app provides a design time experience as well as ensures that
when it runs on Mobile the app content won't appear under the system's StatusBar which is visible
by default with a transparent background. It will also take into account the presence of software
navigation buttons if they appear on a device. An app can opt-out by switching to UseCoreWindow.
-->
<Page.Resources>
<common:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
<DataTemplate x:Key="NavMenuItemTemplate"
x:DataType="local:NavMenuItem">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="48" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<!-- Showing a ToolTip and the Label is redundant. We put the ToolTip on the icon.
It appears when the user hovers over the icon, but not the label which provides
value when the SplitView is 'Compact' while reducing the likelihood of showing
redundant information when the label is shown.-->
<FontIcon x:Name="Glyph"
Glyph="{x:Bind SymbolAsChar}"
VerticalAlignment="Center"
HorizontalAlignment="Center"
FontSize="16"
ToolTipService.ToolTip="{x:Bind Label}" />
<TextBlock x:Name="Text"
Grid.Column="1"
Text="{x:Bind Label}"
TextWrapping="NoWrap"
Style="{StaticResource BodyTextBlockStyle}" />
</Grid>
</DataTemplate>
<DataTemplate x:Key="FeedsListItemTemplate"
x:DataType="viewmodels:FeedViewModel">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="48" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid Visibility="{x:Bind IsInError, Mode=OneWay, Converter={StaticResource BooleanToVisibilityConverter}}">
<!--Error icon when selected.-->
<FontIcon Glyph=""
VerticalAlignment="Center"
HorizontalAlignment="Center"
FontSize="16"
ToolTipService.ToolTip="{x:Bind Description, Mode=OneWay}"
Visibility="{x:Bind IsSelectedInNavList, Mode=OneWay, Converter={StaticResource BooleanToVisibilityConverter}}" />
<!--Error icon when unselected.-->
<FontIcon Glyph=""
VerticalAlignment="Center"
HorizontalAlignment="Center"
FontSize="16"
Foreground="#FFFF8C10"
ToolTipService.ToolTip="{x:Bind Description, Mode=OneWay}"
Visibility="{x:Bind IsSelectedInNavList, Mode=OneWay, ConverterParameter=Reverse, Converter={StaticResource BooleanToVisibilityConverter}}" />
</Grid>
<FontIcon x:Name="Glyph"
Glyph="{x:Bind SymbolAsChar, Mode=OneWay}"
VerticalAlignment="Center"
HorizontalAlignment="Center"
FontSize="16"
ToolTipService.ToolTip="{x:Bind Description, Mode=OneWay}"
Visibility="{x:Bind IsInError, Mode=OneWay, ConverterParameter=Reverse, Converter={StaticResource BooleanToVisibilityConverter}}" />
<TextBlock x:Name="Text"
Grid.Column="1"
Text="{x:Bind Name, Mode=OneWay}"
TextWrapping="NoWrap"
MaxWidth="210"
TextTrimming="CharacterEllipsis"
Style="{StaticResource BodyTextBlockStyle}" />
</Grid>
</DataTemplate>
</Page.Resources>
<Grid x:Name="LayoutRoot">
<!-- Adaptive triggers -->
<VisualStateManager.VisualStateGroups>
<VisualStateGroup>
<VisualState>
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="{StaticResource LargeWindowSnapPoint}" />
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Target="RootSplitView.DisplayMode"
Value="CompactInline" />
<Setter Target="RootSplitView.IsPaneOpen"
Value="True" />
</VisualState.Setters>
</VisualState>
<VisualState>
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="{StaticResource MediumWindowSnapPoint}" />
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Target="RootSplitView.DisplayMode"
Value="CompactOverlay" />
<Setter Target="RootSplitView.IsPaneOpen"
Value="False" />
</VisualState.Setters>
</VisualState>
<VisualState>
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="{StaticResource MinWindowSnapPoint}" />
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Target="RootSplitView.DisplayMode"
Value="Overlay" />
<Setter Target="RootSplitView.IsPaneOpen"
Value="False" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<!-- Top-level navigation menu + app content -->
<SplitView x:Name="RootSplitView"
DisplayMode="CompactInline"
OpenPaneLength="280"
IsTabStop="False">
<SplitView.Pane>
<Grid Background="{ThemeResource Background100OffWhiteBrush}">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<!-- A custom ListView to display the items in the pane.
The automation Name is set in the ContainerContentChanging event. -->
<controls:NavMenuListView x:Name="FeedsList"
Margin="0,48,0,0"
ItemsSource="{x:Bind ViewModel.FeedsWithFavorites, Mode=OneWay}"
TabIndex="3"
ContainerContentChanging="FeedsListItemContainerContentChanging"
SelectionChanged="FeedsList_SelectionChanged"
ItemInvoked="FeedsList_ItemInvoked"
ItemContainerStyle="{StaticResource NavMenuItemContainerStyle}"
ItemTemplate="{StaticResource FeedsListItemTemplate}" />
<Rectangle x:Name="NavPaneDivider"
Grid.Row="1"
Margin="0"
Width="280"
Height="1"
HorizontalAlignment="Stretch"
Fill="{ThemeResource Border100PaleRoseBrush}" />
<controls:NavMenuListView x:Name="NavMenuList"
Grid.Row="2"
Margin="0"
ItemsSource="{x:Bind NavList}"
TabIndex="4"
ContainerContentChanging="NavMenuItemContainerContentChanging"
ItemInvoked="NavMenuList_ItemInvoked"
ItemContainerStyle="{StaticResource NavMenuItemContainerStyle}"
ItemTemplate="{StaticResource NavMenuItemTemplate}" />
</Grid>
</SplitView.Pane>
<SplitView.Content>
<!-- OnNavigatingToPage we synchronize the selected item in the nav menu with the current page.
OnNavigatedToPage we move keyboard focus to the first item on the page after it's loaded. -->
<Frame x:Name="AppShellFrame"
Margin="0"
Navigating="OnNavigatingToPage"
Navigated="OnNavigatedToPage"
Background="White">
<Frame.ContentTransitions>
<TransitionCollection>
<NavigationThemeTransition>
<NavigationThemeTransition.DefaultNavigationTransitionInfo>
<EntranceNavigationTransitionInfo />
</NavigationThemeTransition.DefaultNavigationTransitionInfo>
</NavigationThemeTransition>
</TransitionCollection>
</Frame.ContentTransitions>
</Frame>
</SplitView.Content>
</SplitView>
<!-- Declared last to have it rendered above everything else, but it needs to be the first item in the tab sequence. -->
<ToggleButton x:Name="TogglePaneButton"
Visibility="{x:Bind ViewModel.IsInDetailsMode, Mode=OneWay, ConverterParameter=Reverse, Converter={StaticResource BooleanToVisibilityConverter}}"
Margin="0"
TabIndex="1"
Checked="{x:Bind CheckTogglePaneButtonSizeChanged}"
Unchecked="{x:Bind CheckTogglePaneButtonSizeChanged}"
IsChecked="{Binding IsPaneOpen, ElementName=RootSplitView, Mode=TwoWay}"
AutomationProperties.Name="Menu"
ToolTipService.ToolTip="Menu"
Style="{StaticResource SplitViewTogglePaneButtonStyle}" />
</Grid>
</Page>