793 lines
49 KiB
XML
793 lines
49 KiB
XML
<abstract:WinoAppShellAbstract
|
|
x:Class="Wino.Mail.WinUI.Views.WinoAppShell"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:abstract="using:Wino.Mail.WinUI.Views.Abstract"
|
|
xmlns:animations="using:CommunityToolkit.WinUI.Animations"
|
|
xmlns:calendarControls="using:Wino.Calendar.Controls"
|
|
xmlns:communityControls="using:CommunityToolkit.WinUI.Controls"
|
|
xmlns:controls="using:Wino.Controls"
|
|
xmlns:controls1="using:CommunityToolkit.WinUI.Controls"
|
|
xmlns:coreControls="using:Wino.Mail.WinUI.Controls"
|
|
xmlns:coreConverters="using:Wino.Mail.WinUI.Converters"
|
|
xmlns:coreSelectors="using:Wino.Mail.WinUI.Selectors"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:data="using:Wino.Calendar.ViewModels.Data"
|
|
xmlns:domain="using:Wino.Core.Domain"
|
|
xmlns:enums="using:Wino.Core.Domain.Enums"
|
|
xmlns:helpers="using:Wino.Helpers"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:menu="using:Wino.Core.Domain.MenuItems"
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
x:Name="Root"
|
|
Loaded="OnLoaded"
|
|
PreviewKeyDown="OnPreviewKeyDown"
|
|
mc:Ignorable="d">
|
|
|
|
<Page.Resources>
|
|
|
|
<coreConverters:HexToColorBrushConverter x:Key="HexToColorBrushConverter" />
|
|
|
|
<!-- Clickable New Style Account Template -->
|
|
<DataTemplate x:Key="ClickableAccountMenuTemplate" x:DataType="menu:AccountMenuItem">
|
|
<controls:AccountNavigationItem
|
|
x:Name="AccountItem"
|
|
Height="50"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
BindingData="{x:Bind}"
|
|
DataContext="{x:Bind}"
|
|
IsActiveAccount="{x:Bind IsSelected, Mode=OneWay}"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}"
|
|
SelectsOnInvoked="False"
|
|
Style="{StaticResource SingleAccountNavigationViewItemTemplate}">
|
|
<coreControls:WinoNavigationViewItem.ContentTransitions>
|
|
<TransitionCollection>
|
|
<EdgeUIThemeTransition Edge="Top" />
|
|
</TransitionCollection>
|
|
</coreControls:WinoNavigationViewItem.ContentTransitions>
|
|
<muxc:NavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon
|
|
FontSize="12"
|
|
Foreground="{x:Bind AccountColorHex, Converter={StaticResource HexToColorBrushConverter}, Mode=OneWay}"
|
|
Icon="{x:Bind helpers:XamlHelpers.GetProviderIcon(Parameter)}" />
|
|
</muxc:NavigationViewItem.Icon>
|
|
<muxc:NavigationViewItem.InfoBadge>
|
|
<muxc:InfoBadge
|
|
Background="{ThemeResource SystemAccentColor}"
|
|
Foreground="White"
|
|
Visibility="{x:Bind helpers:XamlHelpers.CountToVisibilityConverter(UnreadItemCount), Mode=OneWay}"
|
|
Value="{x:Bind UnreadItemCount, Mode=OneWay}" />
|
|
</muxc:NavigationViewItem.InfoBadge>
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel VerticalAlignment="Center">
|
|
<TextBlock
|
|
x:Name="AccountNameTextblock"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
|
MaxLines="1"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind AccountName, Mode=OneWay}"
|
|
TextTrimming="CharacterEllipsis" />
|
|
|
|
<TextBlock
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
MaxLines="1"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="{x:Bind Parameter.Address, Mode=OneWay}"
|
|
TextTrimming="CharacterEllipsis"
|
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Converter={StaticResource ReverseBooleanToVisibilityConverter}, Mode=OneWay}" />
|
|
|
|
<TextBlock
|
|
x:Name="SyncStatusText"
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
MaxLines="1"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="{x:Bind SynchronizationStatus, Mode=OneWay}"
|
|
TextTrimming="CharacterEllipsis"
|
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}" />
|
|
</StackPanel>
|
|
|
|
<PathIcon
|
|
x:Name="AttentionIcon"
|
|
Grid.Column="1"
|
|
Width="16"
|
|
Height="16"
|
|
Margin="8,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
x:Load="{x:Bind IsAttentionRequired, Mode=OneWay}"
|
|
Data="F1 M 2.021484 18.769531 C 1.767578 18.769531 1.52832 18.720703 1.303711 18.623047 C 1.079102 18.525391 0.880534 18.391928 0.708008 18.222656 C 0.535482 18.053385 0.398763 17.856445 0.297852 17.631836 C 0.19694 17.407227 0.146484 17.167969 0.146484 16.914062 C 0.146484 16.614584 0.211589 16.328125 0.341797 16.054688 L 7.695312 1.347656 C 7.851562 1.035156 8.082682 0.784506 8.388672 0.595703 C 8.694661 0.406902 9.023438 0.3125 9.375 0.3125 C 9.726562 0.3125 10.055338 0.406902 10.361328 0.595703 C 10.667317 0.784506 10.898438 1.035156 11.054688 1.347656 L 18.408203 16.054688 C 18.53841 16.328125 18.603516 16.614584 18.603516 16.914062 C 18.603516 17.167969 18.553059 17.407227 18.452148 17.631836 C 18.351236 17.856445 18.216145 18.053385 18.046875 18.222656 C 17.877604 18.391928 17.679035 18.525391 17.451172 18.623047 C 17.223307 18.720703 16.982422 18.769531 16.728516 18.769531 Z M 16.728516 17.519531 C 16.884766 17.519531 17.027994 17.460938 17.158203 17.34375 C 17.28841 17.226562 17.353516 17.086588 17.353516 16.923828 C 17.353516 16.806641 17.330729 16.702475 17.285156 16.611328 L 9.931641 1.904297 C 9.879557 1.793621 9.80306 1.708984 9.702148 1.650391 C 9.601236 1.591797 9.492188 1.5625 9.375 1.5625 C 9.257812 1.5625 9.148763 1.593426 9.047852 1.655273 C 8.946939 1.717123 8.870442 1.800131 8.818359 1.904297 L 1.464844 16.611328 C 1.419271 16.702475 1.396484 16.803387 1.396484 16.914062 C 1.396484 17.083334 1.459961 17.226562 1.586914 17.34375 C 1.713867 17.460938 1.858724 17.519531 2.021484 17.519531 Z M 8.75 11.875 L 8.75 6.875 C 8.75 6.705729 8.811849 6.559245 8.935547 6.435547 C 9.059244 6.31185 9.205729 6.25 9.375 6.25 C 9.544271 6.25 9.690755 6.31185 9.814453 6.435547 C 9.93815 6.559245 10 6.705729 10 6.875 L 10 11.875 C 10 12.044271 9.93815 12.190756 9.814453 12.314453 C 9.690755 12.438151 9.544271 12.5 9.375 12.5 C 9.205729 12.5 9.059244 12.438151 8.935547 12.314453 C 8.811849 12.190756 8.75 12.044271 8.75 11.875 Z M 8.4375 14.375 C 8.4375 14.114584 8.528646 13.893229 8.710938 13.710938 C 8.893229 13.528646 9.114583 13.4375 9.375 13.4375 C 9.635416 13.4375 9.856771 13.528646 10.039062 13.710938 C 10.221354 13.893229 10.3125 14.114584 10.3125 14.375 C 10.3125 14.635417 10.221354 14.856771 10.039062 15.039062 C 9.856771 15.221354 9.635416 15.3125 9.375 15.3125 C 9.114583 15.3125 8.893229 15.221354 8.710938 15.039062 C 8.528646 14.856771 8.4375 14.635417 8.4375 14.375 Z "
|
|
Foreground="{ThemeResource InfoBarWarningSeverityIconBackground}" />
|
|
|
|
<muxc:ProgressRing
|
|
x:Name="SynchronizationProgressBar"
|
|
Grid.Column="2"
|
|
Width="16"
|
|
Height="16"
|
|
Margin="8,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
IsActive="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}"
|
|
IsIndeterminate="{x:Bind IsProgressIndeterminate, Mode=OneWay}"
|
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}" />
|
|
</Grid>
|
|
</controls:AccountNavigationItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Fix account issues. -->
|
|
<!-- Authentication -->
|
|
<DataTemplate x:Key="FixAuthenticationIssueTemplate" x:DataType="menu:FixAccountIssuesMenuItem">
|
|
<coreControls:WinoNavigationViewItem SelectsOnInvoked="False">
|
|
<coreControls:WinoNavigationViewItem.Content>
|
|
<TextBlock
|
|
Margin="0,10"
|
|
Foreground="{ThemeResource InfoBarWarningSeverityIconBackground}"
|
|
HorizontalTextAlignment="Center"
|
|
TextWrapping="WrapWholeWords">
|
|
<Run Text="Account credentials can not be verified." /><LineBreak /><Run Text="Click here to fix it." />
|
|
</TextBlock>
|
|
</coreControls:WinoNavigationViewItem.Content>
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Missing system folder config. -->
|
|
<DataTemplate x:Key="FixMissingFolderConfig" x:DataType="menu:FixAccountIssuesMenuItem">
|
|
<coreControls:WinoNavigationViewItem SelectsOnInvoked="False">
|
|
<coreControls:WinoNavigationViewItem.Content>
|
|
<TextBlock
|
|
Margin="0,10"
|
|
Foreground="{ThemeResource InfoBarWarningSeverityIconBackground}"
|
|
HorizontalTextAlignment="Center"
|
|
TextWrapping="WrapWholeWords">
|
|
<Run Text="Account is missing system folder configuration." /><LineBreak /><LineBreak /><Run Text="Click here to fix it." />
|
|
</TextBlock>
|
|
</coreControls:WinoNavigationViewItem.Content>
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<!-- New Mail -->
|
|
<DataTemplate x:Key="CreateNewMailTemplate" x:DataType="menu:NewMailMenuItem">
|
|
<coreControls:WinoNavigationViewItem
|
|
Height="50"
|
|
DataContext="{x:Bind}"
|
|
SelectsOnInvoked="False">
|
|
<muxc:NavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon Icon="NewMail" />
|
|
</muxc:NavigationViewItem.Icon>
|
|
<TextBlock
|
|
Margin="0,-2,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Style="{StaticResource FlyoutPickerTitleTextBlockStyle}"
|
|
Text="{x:Bind domain:Translator.MenuNewMail}" />
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Inbox or any other folders. -->
|
|
<DataTemplate x:Key="FolderMenuTemplate" x:DataType="menu:FolderMenuItem">
|
|
<coreControls:WinoNavigationViewItem
|
|
MinHeight="40"
|
|
AllowDrop="True"
|
|
ContextRequested="MenuItemContextRequested"
|
|
DataContext="{x:Bind}"
|
|
DragEnter="ItemDragEnterOnFolder"
|
|
DragLeave="ItemDragLeaveFromFolder"
|
|
Drop="ItemDroppedOnFolder"
|
|
FontSize="50"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}"
|
|
IsSelected="{x:Bind IsSelected, Mode=TwoWay}"
|
|
MenuItemsSource="{x:Bind SubMenuItems, Mode=OneWay}"
|
|
SelectsOnInvoked="{x:Bind IsMoveTarget, Mode=OneWay}"
|
|
ToolTipService.ToolTip="{x:Bind FolderName, Mode=OneWay}">
|
|
<animations:Implicit.Animations>
|
|
<animations:ScaleAnimation Duration="0:0:0.5" />
|
|
</animations:Implicit.Animations>
|
|
<coreControls:WinoNavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon FontSize="64" Icon="{x:Bind helpers:XamlHelpers.GetSpecialFolderPathIconGeometry(Parameter.SpecialFolderType)}" />
|
|
</coreControls:WinoNavigationViewItem.Icon>
|
|
<muxc:NavigationViewItem.InfoBadge>
|
|
<muxc:InfoBadge
|
|
x:Name="FolderInfoBadge"
|
|
Background="{StaticResource SystemAccentColor}"
|
|
Foreground="White"
|
|
Visibility="{x:Bind helpers:XamlHelpers.CountToVisibilityConverter(UnreadItemCount), Mode=OneWay}"
|
|
Value="{x:Bind UnreadItemCount, Mode=OneWay}" />
|
|
</muxc:NavigationViewItem.InfoBadge>
|
|
<muxc:NavigationViewItem.Content>
|
|
<Grid
|
|
x:Name="FolderBackgroundGrid"
|
|
MaxHeight="36"
|
|
Padding="2"
|
|
VerticalAlignment="Center">
|
|
<Grid
|
|
x:Name="BackgroundColorGrid"
|
|
x:Load="{x:Bind HasTextColor, Mode=OneWay}"
|
|
Background="{x:Bind helpers:XamlHelpers.GetSolidColorBrushFromHex(Parameter.BackgroundColorHex), Mode=OneWay}"
|
|
CornerRadius="3">
|
|
<TextBlock
|
|
x:Name="CustomColorTitle"
|
|
Margin="4,0,0,0"
|
|
VerticalAlignment="Center"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightBySyncState(IsSelected), Mode=OneWay}"
|
|
Foreground="{x:Bind helpers:XamlHelpers.GetSolidColorBrushFromHex(Parameter.TextColorHex), Mode=OneWay}"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind FolderName, Mode=OneWay}"
|
|
TextWrapping="WrapWholeWords" />
|
|
</Grid>
|
|
|
|
<TextBlock
|
|
x:Name="NormalTitle"
|
|
VerticalAlignment="Center"
|
|
x:Load="{x:Bind HasTextColor, Converter={StaticResource ReverseBooleanConverter}}"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightBySyncState(IsSelected), Mode=OneWay}"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind FolderName, Mode=OneWay}"
|
|
TextWrapping="WrapWholeWords" />
|
|
</Grid>
|
|
</muxc:NavigationViewItem.Content>
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Merged Inbox -->
|
|
<DataTemplate x:Key="MergedAccountTemplate" x:DataType="menu:MergedAccountMenuItem">
|
|
<controls:AccountNavigationItem
|
|
x:Name="AccountItem"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
BindingData="{x:Bind}"
|
|
DataContext="{x:Bind}"
|
|
IsActiveAccount="{x:Bind IsSelected, Mode=TwoWay}"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}"
|
|
MenuItemsSource="{x:Bind SubMenuItems}"
|
|
SelectsOnInvoked="False"
|
|
Style="{StaticResource SingleAccountNavigationViewItemTemplate}">
|
|
<muxc:NavigationViewItem.InfoBadge>
|
|
<muxc:InfoBadge
|
|
x:Name="FolderInfoBadge"
|
|
Background="{StaticResource SystemAccentColor}"
|
|
Foreground="White"
|
|
Visibility="{x:Bind helpers:XamlHelpers.CountToVisibilityConverter(UnreadItemCount), Mode=OneWay}"
|
|
Value="{x:Bind UnreadItemCount, Mode=OneWay}" />
|
|
</muxc:NavigationViewItem.InfoBadge>
|
|
<coreControls:WinoNavigationViewItem.ContentTransitions>
|
|
<TransitionCollection>
|
|
<EdgeUIThemeTransition Edge="Top" />
|
|
</TransitionCollection>
|
|
</coreControls:WinoNavigationViewItem.ContentTransitions>
|
|
<coreControls:WinoNavigationViewItem.Icon>
|
|
<PathIcon Data="F1 M 8.613281 17.5 C 8.75 17.942709 8.945312 18.359375 9.199219 18.75 L 4.921875 18.75 C 4.433594 18.75 3.966471 18.650717 3.520508 18.452148 C 3.074544 18.25358 2.683919 17.986654 2.348633 17.651367 C 2.013346 17.31608 1.746419 16.925455 1.547852 16.479492 C 1.349284 16.033529 1.25 15.566406 1.25 15.078125 L 1.25 4.921875 C 1.25 4.433594 1.349284 3.966473 1.547852 3.520508 C 1.746419 3.074545 2.013346 2.68392 2.348633 2.348633 C 2.683919 2.013348 3.074544 1.74642 3.520508 1.547852 C 3.966471 1.349285 4.433594 1.25 4.921875 1.25 L 15.078125 1.25 C 15.566406 1.25 16.033527 1.349285 16.479492 1.547852 C 16.925455 1.74642 17.31608 2.013348 17.651367 2.348633 C 17.986652 2.68392 18.25358 3.074545 18.452148 3.520508 C 18.650715 3.966473 18.75 4.433594 18.75 4.921875 L 18.75 6.572266 C 18.580729 6.344402 18.390299 6.132813 18.178711 5.9375 C 17.967121 5.742188 17.740885 5.566407 17.5 5.410156 L 17.5 4.951172 C 17.5 4.625651 17.433268 4.314779 17.299805 4.018555 C 17.16634 3.722332 16.987305 3.461914 16.762695 3.237305 C 16.538086 3.012695 16.277668 2.83366 15.981445 2.700195 C 15.685221 2.566732 15.374349 2.5 15.048828 2.5 L 4.951172 2.5 C 4.619141 2.5 4.303385 2.568359 4.003906 2.705078 C 3.704427 2.841797 3.44401 3.02409 3.222656 3.251953 C 3.001302 3.479818 2.825521 3.745117 2.695312 4.047852 C 2.565104 4.350587 2.5 4.66797 2.5 5 L 13.310547 5 C 12.60091 5.266928 11.998697 5.683594 11.503906 6.25 L 2.5 6.25 L 2.5 15.048828 C 2.5 15.38737 2.568359 15.704753 2.705078 16.000977 C 2.841797 16.297201 3.024088 16.55599 3.251953 16.777344 C 3.479818 16.998697 3.745117 17.174479 4.047852 17.304688 C 4.350586 17.434896 4.667969 17.5 5 17.5 Z" />
|
|
</coreControls:WinoNavigationViewItem.Icon>
|
|
|
|
<Grid Height="50">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel VerticalAlignment="Center" Spacing="0">
|
|
<TextBlock
|
|
x:Name="AccountNameTextblock"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsChildSelected), Mode=OneWay}"
|
|
MaxLines="1"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind MergedAccountName, Mode=OneWay}"
|
|
TextTrimming="CharacterEllipsis" />
|
|
|
|
<TextBlock
|
|
FontSize="12"
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
MaxLines="1"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="{x:Bind SynchronizationStatus, Mode=OneWay}"
|
|
TextTrimming="CharacterEllipsis"
|
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}" />
|
|
|
|
<TextBlock
|
|
FontSize="12"
|
|
MaxLines="1"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
TextTrimming="CharacterEllipsis"
|
|
Visibility="{x:Bind helpers:XamlHelpers.ReverseBoolToVisibilityConverter(IsSynchronizationProgressVisible), Mode=OneWay}">
|
|
<Run Text="{x:Bind MergedAccountCount, Mode=OneWay}" /><Run Text="{x:Bind domain:Translator.MenuMergedAccountItemAccountsSuffix}" />
|
|
</TextBlock>
|
|
</StackPanel>
|
|
|
|
<muxc:ProgressRing
|
|
x:Name="SynchronizationProgressBar"
|
|
Grid.Column="1"
|
|
Width="16"
|
|
Height="16"
|
|
Margin="8,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
IsActive="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}"
|
|
IsIndeterminate="{x:Bind IsProgressIndeterminate, Mode=OneWay}"
|
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}" />
|
|
</Grid>
|
|
</controls:AccountNavigationItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Merged Account Common Folder Item -->
|
|
<DataTemplate x:Key="MergedAccountFolderMenuItemTemplate" x:DataType="menu:MergedAccountFolderMenuItem">
|
|
<coreControls:WinoNavigationViewItem
|
|
MinHeight="30"
|
|
AllowDrop="True"
|
|
ContextRequested="MenuItemContextRequested"
|
|
DataContext="{x:Bind}"
|
|
DragEnter="ItemDragEnterOnFolder"
|
|
DragLeave="ItemDragLeaveFromFolder"
|
|
Drop="ItemDroppedOnFolder"
|
|
FontSize="50"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}"
|
|
IsSelected="{x:Bind IsSelected, Mode=TwoWay}"
|
|
SelectsOnInvoked="True"
|
|
ToolTipService.ToolTip="{x:Bind FolderName, Mode=OneWay}">
|
|
<animations:Implicit.Animations>
|
|
<animations:ScaleAnimation Duration="0:0:0.5" />
|
|
</animations:Implicit.Animations>
|
|
<coreControls:WinoNavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon FontSize="64" Icon="{x:Bind helpers:XamlHelpers.GetSpecialFolderPathIconGeometry(FolderType)}" />
|
|
</coreControls:WinoNavigationViewItem.Icon>
|
|
<muxc:NavigationViewItem.InfoBadge>
|
|
<muxc:InfoBadge
|
|
x:Name="FolderInfoBadge"
|
|
Background="{StaticResource SystemAccentColor}"
|
|
Foreground="White"
|
|
Visibility="{x:Bind helpers:XamlHelpers.CountToVisibilityConverter(UnreadItemCount), Mode=OneWay}"
|
|
Value="{x:Bind UnreadItemCount, Mode=OneWay}" />
|
|
</muxc:NavigationViewItem.InfoBadge>
|
|
<Grid
|
|
x:Name="FolderBackgroundGrid"
|
|
Padding="2"
|
|
VerticalAlignment="Center">
|
|
<TextBlock
|
|
x:Name="NormalTitle"
|
|
VerticalAlignment="Center"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightBySyncState(IsSelected), Mode=OneWay}"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind FolderName, Mode=OneWay}"
|
|
TextWrapping="WrapWholeWords" />
|
|
</Grid>
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<!-- Merged Account More Expansion Item -->
|
|
<DataTemplate x:Key="MergedAccountMoreFolderItemTemplate" x:DataType="menu:MergedAccountMoreFolderMenuItem">
|
|
<coreControls:WinoNavigationViewItem
|
|
MinHeight="30"
|
|
Content="{x:Bind domain:Translator.More}"
|
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}"
|
|
IsSelected="{x:Bind IsSelected, Mode=TwoWay}"
|
|
MenuItemsSource="{x:Bind SubMenuItems, Mode=OneWay}"
|
|
SelectsOnInvoked="True">
|
|
<animations:Implicit.Animations>
|
|
<animations:ScaleAnimation Duration="0:0:0.5" />
|
|
</animations:Implicit.Animations>
|
|
<coreControls:WinoNavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon FontSize="64" Icon="{x:Bind helpers:XamlHelpers.GetSpecialFolderPathIconGeometry(enums:SpecialFolderType.More)}" />
|
|
</coreControls:WinoNavigationViewItem.Icon>
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Key="NewContactTemplate" x:DataType="menu:NewContactMenuItem">
|
|
<coreControls:WinoNavigationViewItem
|
|
Height="50"
|
|
DataContext="{x:Bind}"
|
|
SelectsOnInvoked="False">
|
|
<muxc:NavigationViewItem.Icon>
|
|
<FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}" Glyph="" />
|
|
</muxc:NavigationViewItem.Icon>
|
|
<TextBlock
|
|
Margin="0,-2,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Style="{StaticResource FlyoutPickerTitleTextBlockStyle}"
|
|
Text="{x:Bind domain:Translator.ContactsPane_NewContact}" />
|
|
</coreControls:WinoNavigationViewItem>
|
|
</DataTemplate>
|
|
|
|
<coreSelectors:NavigationMenuTemplateSelector
|
|
x:Key="NavigationMenuTemplateSelector"
|
|
ClickableAccountMenuTemplate="{StaticResource ClickableAccountMenuTemplate}"
|
|
FixAuthenticationIssueTemplate="{StaticResource FixAuthenticationIssueTemplate}"
|
|
FixMissingFolderConfigTemplate="{StaticResource FixMissingFolderConfig}"
|
|
FolderMenuTemplate="{StaticResource FolderMenuTemplate}"
|
|
MergedAccountFolderTemplate="{StaticResource MergedAccountFolderMenuItemTemplate}"
|
|
MergedAccountMoreExpansionItemTemplate="{StaticResource MergedAccountMoreFolderItemTemplate}"
|
|
MergedAccountTemplate="{StaticResource MergedAccountTemplate}"
|
|
NewContactTemplate="{StaticResource NewContactTemplate}"
|
|
NewMailTemplate="{StaticResource CreateNewMailTemplate}"
|
|
RatingItemTemplate="{StaticResource RatingItemTemplate}"
|
|
SeperatorTemplate="{StaticResource SeperatorTemplate}"
|
|
SettingsShellPageItemTemplate="{StaticResource SettingsShellPageItemTemplate}"
|
|
SettingsShellSectionItemTemplate="{StaticResource SettingsShellSectionItemTemplate}"
|
|
StoreUpdateItemTemplate="{StaticResource StoreUpdateItemTemplate}" />
|
|
|
|
<Style
|
|
x:Key="CalendarNavigationButtonStyle"
|
|
BasedOn="{StaticResource DefaultButtonStyle}"
|
|
TargetType="Button">
|
|
<Setter Property="Margin" Value="0,4,0,0" />
|
|
<Setter Property="Padding" Value="8,4,8,6" />
|
|
<Setter Property="CornerRadius" Value="6" />
|
|
<Setter Property="Width" Value="40" />
|
|
</Style>
|
|
</Page.Resources>
|
|
|
|
<abstract:WinoAppShellAbstract.ShellContent>
|
|
<Grid Margin="4,0,0,0" Background="Transparent">
|
|
<ContentPresenter x:Name="DynamicPageShellContentPresenter" />
|
|
<Grid
|
|
x:Name="CalendarShellContentRoot"
|
|
ColumnSpacing="12"
|
|
Visibility="Collapsed">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid x:Name="ShellContentArea" ColumnSpacing="12">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel
|
|
x:Name="NavigationTitleStack"
|
|
Grid.Column="0"
|
|
Margin="0,0,12,4"
|
|
Orientation="Horizontal"
|
|
Spacing="6">
|
|
<Button
|
|
x:Name="PreviousDateButton"
|
|
Click="PreviousDateClicked"
|
|
Style="{StaticResource CalendarNavigationButtonStyle}">
|
|
<PathIcon x:Name="PreviousDateButtonPathIcon" Data="F1 M 8.72 18.599998 C 8.879999 18.733334 9.059999 18.799999 9.26 18.799999 C 9.459999 18.799999 9.633332 18.719999 9.78 18.559999 C 9.926666 18.4 10 18.219999 10 18.019999 C 10 17.82 9.92 17.653332 9.76 17.52 L 4.52 12.559999 L 17.24 12.559999 C 17.453333 12.559999 17.633331 12.486667 17.779999 12.339999 C 17.926666 12.193334 18 12.013333 18 11.799999 C 18 11.586666 17.926666 11.406667 17.779999 11.259999 C 17.633331 11.113333 17.453333 11.039999 17.24 11.039999 L 4.52 11.039999 L 9.76 6.08 C 9.973333 5.893333 10.046666 5.653332 9.98 5.359999 C 9.913333 5.066666 9.74 4.880001 9.46 4.799999 C 9.179999 4.720001 8.933332 4.786667 8.72 5 L 2.32 11.08 C 2.16 11.24 2.053333 11.426666 2 11.639999 C 1.973333 11.746666 1.973333 11.853333 2 11.959999 C 2.053333 12.173333 2.16 12.360001 2.32 12.52 Z " />
|
|
</Button>
|
|
|
|
<Button
|
|
x:Name="NextDateButton"
|
|
Click="NextDateClicked"
|
|
Style="{StaticResource CalendarNavigationButtonStyle}">
|
|
<PathIcon x:Name="NextDateButtonPathIcon" Data="F1 M 11.28 5 C 11.12 4.866667 10.94 4.806667 10.74 4.82 C 10.539999 4.833334 10.366666 4.913334 10.219999 5.059999 C 10.073333 5.206665 10 5.379999 10 5.58 C 10 5.779999 10.08 5.946667 10.24 6.08 L 15.48 11.039999 L 2.76 11.039999 C 2.546667 11.039999 2.366667 11.113333 2.22 11.259999 C 2.073333 11.406667 2 11.586666 2 11.799999 C 2 12.013333 2.073333 12.193334 2.22 12.339999 C 2.366667 12.486667 2.546667 12.559999 2.76 12.559999 L 15.48 12.559999 L 10.24 17.52 C 10.026667 17.706665 9.953333 17.946667 10.02 18.24 C 10.086666 18.533333 10.259999 18.719999 10.54 18.799999 C 10.82 18.879999 11.066667 18.813334 11.28 18.599998 L 17.68 12.52 C 17.84 12.360001 17.946667 12.173333 18 11.959999 C 18 11.853333 18 11.746666 18 11.639999 C 17.946667 11.426666 17.84 11.24 17.68 11.08 Z " />
|
|
</Button>
|
|
|
|
<calendarControls:CustomCalendarFlipView
|
|
x:Name="DayHeaderNavigationItemsFlipView"
|
|
MaxHeight="30"
|
|
Margin="8,4,0,0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Center"
|
|
HorizontalContentAlignment="Left"
|
|
Background="Transparent"
|
|
FontSize="14"
|
|
FontWeight="Normal"
|
|
IsHitTestVisible="False">
|
|
<FlipView.ItemTemplate>
|
|
<DataTemplate x:DataType="x:String">
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
FontSize="18"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind}" />
|
|
</DataTemplate>
|
|
</FlipView.ItemTemplate>
|
|
</calendarControls:CustomCalendarFlipView>
|
|
</StackPanel>
|
|
|
|
<AutoSuggestBox
|
|
x:Name="SearchBox"
|
|
Grid.Column="1"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Center"
|
|
BorderBrush="Transparent"
|
|
PlaceholderText="Search" />
|
|
</Grid>
|
|
|
|
<calendarControls:WinoCalendarTypeSelectorControl
|
|
x:Name="CalendarTypeSelector"
|
|
Grid.Column="1"
|
|
HorizontalAlignment="Right" />
|
|
</Grid>
|
|
</Grid>
|
|
</abstract:WinoAppShellAbstract.ShellContent>
|
|
|
|
<Grid
|
|
x:Name="RootGrid"
|
|
Padding="0"
|
|
ColumnSpacing="0"
|
|
RowSpacing="0">
|
|
<muxc:NavigationView
|
|
x:Name="navigationView"
|
|
Grid.Row="1"
|
|
Grid.ColumnSpan="3"
|
|
Margin="-1,-1,0,0"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
AlwaysShowHeader="True"
|
|
DisplayModeChanged="NavigationViewDisplayModeChanged"
|
|
IsBackButtonVisible="Collapsed"
|
|
IsPaneOpen="{x:Bind ViewModel.PreferencesService.IsNavigationPaneOpened, Mode=TwoWay}"
|
|
IsPaneToggleButtonVisible="False"
|
|
IsSettingsVisible="False"
|
|
IsTabStop="True"
|
|
IsTitleBarAutoPaddingEnabled="False"
|
|
ItemInvoked="NavigationViewItemInvoked"
|
|
MenuItemTemplateSelector="{StaticResource NavigationMenuTemplateSelector}"
|
|
OpenPaneLength="{x:Bind ViewModel.StatePersistenceService.OpenPaneLength, Mode=TwoWay}"
|
|
PaneClosed="NavigationPaneClosed"
|
|
PaneDisplayMode="Auto"
|
|
PaneOpened="NavigationPaneOpened"
|
|
PaneOpening="NavigationPaneOpening"
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden"
|
|
SelectionChanged="MenuSelectionChanged"
|
|
Style="{StaticResource CalendarShellNavigationViewStyle}">
|
|
<muxc:NavigationView.ContentTransitions>
|
|
<TransitionCollection>
|
|
<AddDeleteThemeTransition />
|
|
</TransitionCollection>
|
|
</muxc:NavigationView.ContentTransitions>
|
|
<muxc:NavigationView.PaneCustomContent>
|
|
<Grid
|
|
x:Name="PaneCustomContent"
|
|
Padding="0,0,0,6"
|
|
Visibility="Collapsed">
|
|
<Grid x:Name="CalendarPaneContent" Visibility="Collapsed">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<coreControls:WinoNavigationViewItem
|
|
x:Name="NewCalendarEventNavigationItem"
|
|
Grid.Row="0"
|
|
Height="50"
|
|
Margin="0,0,0,12"
|
|
AutomationProperties.Name="{x:Bind domain:Translator.CalendarEventCompose_NewEventButton, Mode=OneTime}"
|
|
IsTabStop="True"
|
|
KeyDown="NewCalendarEventNavigationItemKeyDown"
|
|
SelectsOnInvoked="False"
|
|
Tapped="NewCalendarEventNavigationItemTapped">
|
|
<muxc:NavigationViewItem.Icon>
|
|
<coreControls:WinoFontIcon Icon="NewMail" />
|
|
</muxc:NavigationViewItem.Icon>
|
|
<TextBlock
|
|
Margin="0,-2,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Style="{StaticResource FlyoutPickerTitleTextBlockStyle}"
|
|
Text="{x:Bind domain:Translator.CalendarEventCompose_NewEventButton, Mode=OneTime}" />
|
|
</coreControls:WinoNavigationViewItem>
|
|
|
|
<Border
|
|
x:Name="RangeSummaryCard"
|
|
Grid.Row="1"
|
|
Margin="16,0,16,12"
|
|
Padding="12"
|
|
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
|
|
CornerRadius="8">
|
|
<StackPanel Spacing="12">
|
|
<TextBlock
|
|
FontWeight="SemiBold"
|
|
Text="{x:Bind ViewModel.CalendarClient.VisibleDateRangeText, Mode=OneWay}"
|
|
TextWrapping="WrapWholeWords" />
|
|
|
|
<muxc:CalendarView
|
|
x:Name="VisibleDateRangeCalendarView"
|
|
HorizontalAlignment="Stretch"
|
|
SelectedDatesChanged="VisibleDateRangeCalendarViewSelectedDatesChanged"
|
|
SelectionMode="Multiple"
|
|
Style="{StaticResource WinoCalendarViewStyle}" />
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<ListView
|
|
x:Name="CalendarHostListView"
|
|
Grid.Row="2"
|
|
SelectionMode="None">
|
|
<ListView.Header>
|
|
<TextBlock
|
|
Margin="20,12,12,12"
|
|
FontSize="16"
|
|
Text="Calendars" />
|
|
</ListView.Header>
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate x:DataType="data:GroupedAccountCalendarViewModel">
|
|
<muxc:Expander
|
|
HorizontalAlignment="Stretch"
|
|
HorizontalContentAlignment="Stretch"
|
|
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}">
|
|
<muxc:Expander.Header>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<CheckBox
|
|
Width="26"
|
|
MinWidth="0"
|
|
IsChecked="{x:Bind IsCheckedState, Mode=TwoWay}"
|
|
IsThreeState="True" />
|
|
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
VerticalAlignment="Center"
|
|
TextWrapping="Wrap">
|
|
<Run FontWeight="SemiBold" Text="{x:Bind Account.Name}" />
|
|
<Run FontSize="12" Text="(" /><Run FontSize="12" Text="{x:Bind Account.Address}" /><Run FontSize="12" Text=")" />
|
|
</TextBlock>
|
|
</Grid>
|
|
</muxc:Expander.Header>
|
|
<muxc:Expander.Content>
|
|
<ItemsControl ItemsSource="{x:Bind AccountCalendars}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate x:DataType="data:AccountCalendarViewModel">
|
|
<CheckBox
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Center"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
IsChecked="{x:Bind IsChecked, Mode=TwoWay}">
|
|
<Grid Margin="0,0,0,5" ColumnSpacing="6">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Ellipse
|
|
Width="20"
|
|
Height="20"
|
|
Fill="{x:Bind helpers:XamlHelpers.GetSolidColorBrushFromHex(BackgroundColorHex), Mode=OneWay}" />
|
|
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Text="{x:Bind Name, Mode=OneWay}"
|
|
TextWrapping="Wrap" />
|
|
</Grid>
|
|
</CheckBox>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</muxc:Expander.Content>
|
|
</muxc:Expander>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</Grid>
|
|
|
|
<StackPanel
|
|
x:Name="ContactsPaneContent"
|
|
Margin="20,20,16,0"
|
|
Spacing="6"
|
|
Visibility="Collapsed">
|
|
<TextBlock
|
|
FontSize="16"
|
|
FontWeight="SemiBold"
|
|
Text="{x:Bind domain:Translator.ContactsPane_DescriptionTitle, Mode=OneTime}"
|
|
TextWrapping="WrapWholeWords" />
|
|
<TextBlock
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
Text="{x:Bind domain:Translator.ContactsPane_DescriptionBody, Mode=OneTime}"
|
|
TextWrapping="WrapWholeWords" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</muxc:NavigationView.PaneCustomContent>
|
|
<Grid ColumnSpacing="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<controls1:PropertySizer
|
|
Width="1"
|
|
HorizontalAlignment="Left"
|
|
Background="Transparent"
|
|
Binding="{x:Bind ViewModel.StatePersistenceService.OpenPaneLength, Mode=TwoWay}"
|
|
Canvas.ZIndex="20"
|
|
Foreground="Transparent"
|
|
IsHitTestVisible="{x:Bind navigationView.IsPaneOpen, Mode=OneWay}"
|
|
IsTabStop="False"
|
|
Maximum="1000"
|
|
Minimum="160" />
|
|
|
|
<!-- Main Content -->
|
|
<Frame
|
|
x:Name="InnerShellFrame"
|
|
Padding="0,0,7,7"
|
|
CacheSize="0"
|
|
IsNavigationStackEnabled="True"
|
|
Navigated="ShellFrameContentNavigated">
|
|
<Frame.ContentTransitions>
|
|
<TransitionCollection>
|
|
<PopupThemeTransition />
|
|
</TransitionCollection>
|
|
</Frame.ContentTransitions>
|
|
</Frame>
|
|
|
|
<!-- InfoBar -->
|
|
<coreControls:WinoInfoBar
|
|
x:Name="ShellInfoBar"
|
|
MaxWidth="700"
|
|
Margin="0,60,25,0"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Top"
|
|
IsClosable="False"
|
|
IsOpen="False" />
|
|
|
|
<!-- Teaching Tip -->
|
|
<muxc:TeachingTip
|
|
x:Name="ShellTip"
|
|
IsOpen="False"
|
|
PreferredPlacement="Bottom"
|
|
Target="{x:Bind ShellInfoBar}" />
|
|
</Grid>
|
|
</muxc:NavigationView>
|
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
<VisualStateGroup x:Name="LowResolutionStates">
|
|
<VisualState x:Name="BigScreen">
|
|
<VisualState.StateTriggers>
|
|
<AdaptiveTrigger MinWindowWidth="1200" />
|
|
</VisualState.StateTriggers>
|
|
<VisualState.Setters>
|
|
<Setter Target="navigationView.IsPaneOpen" Value="True" />
|
|
</VisualState.Setters>
|
|
</VisualState>
|
|
<VisualState x:Name="SmallScreen">
|
|
<VisualState.StateTriggers>
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
|
</VisualState.StateTriggers>
|
|
<VisualState.Setters>
|
|
<Setter Target="NavigationTitleStack.Visibility" Value="Collapsed" />
|
|
<Setter Target="SearchBox.(Grid.ColumnSpan)" Value="2" />
|
|
<Setter Target="navigationView.IsPaneOpen" Value="False" />
|
|
</VisualState.Setters>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
|
|
<VisualStateGroup x:Name="CalendarOrientationStates">
|
|
<VisualState x:Name="HorizontalCalendar" />
|
|
<VisualState x:Name="VerticalCalendar">
|
|
<VisualState.Setters>
|
|
<Setter Target="DayHeaderNavigationItemsFlipView.ItemsPanel">
|
|
<Setter.Value>
|
|
<ItemsPanelTemplate>
|
|
<VirtualizingStackPanel Orientation="Vertical" />
|
|
</ItemsPanelTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Target="PreviousDateButtonPathIcon.Data" Value="F1 M 3.2 10.52 C 2.986666 10.733333 2.92 10.98 3 11.259999 C 3.08 11.54 3.266666 11.713333 3.56 11.78 C 3.853333 11.846666 4.093333 11.773333 4.28 11.559999 L 9.24 6.32 L 9.24 19.039999 C 9.24 19.253332 9.313333 19.433332 9.46 19.58 C 9.606666 19.726665 9.786666 19.799999 10 19.799999 C 10.213333 19.799999 10.393332 19.726665 10.54 19.58 C 10.686666 19.433332 10.76 19.253332 10.76 19.039999 L 10.76 6.32 L 15.719999 11.559999 C 15.906666 11.773333 16.139999 11.846666 16.42 11.78 C 16.700001 11.713333 16.886665 11.54 16.98 11.259999 C 17.073332 10.98 17.013332 10.733333 16.799999 10.52 L 10.719999 4.119999 C 10.559999 3.959999 10.373333 3.853333 10.16 3.799999 C 10.053333 3.799999 9.946667 3.799999 9.84 3.799999 C 9.626666 3.853333 9.439999 3.959999 9.28 4.119999 Z " />
|
|
<Setter Target="NextDateButtonPathIcon.Data" Value="F1 M 16.799999 13.079999 C 16.933332 12.92 16.993332 12.74 16.98 12.539999 C 16.966665 12.34 16.886665 12.166667 16.74 12.02 C 16.593334 11.873333 16.42 11.799999 16.219999 11.799999 C 16.02 11.799999 15.853333 11.879999 15.719999 12.039999 L 10.76 17.279999 L 10.76 4.559999 C 10.76 4.346666 10.686666 4.166668 10.54 4.02 C 10.393332 3.873333 10.213333 3.799999 10 3.799999 C 9.786666 3.799999 9.606666 3.873333 9.46 4.02 C 9.313333 4.166668 9.24 4.346666 9.24 4.559999 L 9.24 17.279999 L 4.28 12.039999 C 4.146667 11.879999 3.98 11.799999 3.78 11.799999 C 3.58 11.799999 3.4 11.873333 3.24 12.02 C 3.08 12.166667 3 12.34 3 12.539999 C 3 12.74 3.066667 12.92 3.2 13.079999 L 9.28 19.48 C 9.439999 19.639999 9.626666 19.746666 9.84 19.799999 C 9.946667 19.799999 10.053333 19.799999 10.16 19.799999 C 10.373333 19.746666 10.559999 19.639999 10.719999 19.48 Z " />
|
|
</VisualState.Setters>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
|
|
<VisualStateGroup x:Name="ShellStateContentGroup">
|
|
<VisualState x:Name="DefaultShellContentState" />
|
|
<VisualState x:Name="EventDetailsContentState">
|
|
<VisualState.Setters>
|
|
<Setter Target="ShellContentArea.Visibility" Value="Collapsed" />
|
|
<Setter Target="CalendarTypeSelector.Visibility" Value="Collapsed" />
|
|
<Setter Target="RangeSummaryCard.IsEnabled" Value="False" />
|
|
<Setter Target="CalendarHostListView.IsEnabled" Value="False" />
|
|
</VisualState.Setters>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
</VisualStateManager.VisualStateGroups>
|
|
</Grid>
|
|
</abstract:WinoAppShellAbstract>
|
|
|
|
|