2017-09-12 18:20:32 +02:00
|
|
|
<Page
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2017-10-02 18:40:54 +02:00
|
|
|
xmlns:converters="using:ModernKeePass.Converters"
|
2017-10-05 18:40:24 +02:00
|
|
|
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
|
|
|
|
xmlns:core="using:Microsoft.Xaml.Interactions.Core"
|
2017-12-04 18:07:03 +01:00
|
|
|
xmlns:actions="using:ModernKeePass.Actions"
|
2018-06-13 18:58:28 +02:00
|
|
|
xmlns:userControls="using:ModernKeePass.Views.UserControls"
|
2017-12-08 19:38:33 +01:00
|
|
|
x:Class="ModernKeePass.Views.GroupDetailPage"
|
2017-12-11 19:00:14 +01:00
|
|
|
mc:Ignorable="d"
|
2020-04-25 22:03:47 +02:00
|
|
|
SizeChanged="GroupDetailPage_OnSizeChanged"
|
|
|
|
DataContext="{Binding Source={StaticResource Locator}, Path=Group}">
|
2017-09-29 18:08:20 +02:00
|
|
|
<Page.Resources>
|
2017-10-03 16:06:49 +02:00
|
|
|
<converters:ColorToBrushConverter x:Key="ColorToBrushConverter"/>
|
2017-10-31 18:49:18 +01:00
|
|
|
<converters:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
|
2017-11-28 18:53:10 +01:00
|
|
|
<converters:InverseBooleanToVisibilityConverter x:Key="InverseBooleanToVisibilityConverter"/>
|
2020-04-08 20:02:13 +02:00
|
|
|
<converters:IconToSymbolConverter x:Key="IconToSymbolConverter"/>
|
2017-09-29 18:08:20 +02:00
|
|
|
</Page.Resources>
|
2017-10-25 18:29:50 +02:00
|
|
|
<Grid>
|
2017-09-29 18:08:20 +02:00
|
|
|
<Grid.Resources>
|
2017-10-06 16:21:12 -04:00
|
|
|
<CollectionViewSource
|
|
|
|
x:Name="EntriesZoomedOutViewSource"
|
2018-06-12 18:40:54 +02:00
|
|
|
Source="{Binding EntriesZoomedOut}" IsSourceGrouped="True" />
|
2017-09-29 18:08:20 +02:00
|
|
|
</Grid.Resources>
|
2017-10-25 18:29:50 +02:00
|
|
|
<Grid.Background>
|
|
|
|
<StaticResource ResourceKey="ApplicationPageBackgroundThemeBrush"/>
|
|
|
|
</Grid.Background>
|
2017-10-05 18:40:24 +02:00
|
|
|
<Grid.ChildrenTransitions>
|
2017-09-12 18:20:32 +02:00
|
|
|
<TransitionCollection>
|
|
|
|
<EntranceThemeTransition/>
|
|
|
|
</TransitionCollection>
|
2017-10-05 18:40:24 +02:00
|
|
|
</Grid.ChildrenTransitions>
|
2017-09-12 18:20:32 +02:00
|
|
|
<Grid.RowDefinitions>
|
2020-05-04 20:56:19 +02:00
|
|
|
<RowDefinition Height="{StaticResource MenuHeightGridLength}"/>
|
2017-09-12 18:20:32 +02:00
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
2017-10-28 11:24:34 -04:00
|
|
|
<Grid Grid.Row="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
2020-05-04 20:56:19 +02:00
|
|
|
<ColumnDefinition Width="Auto" />
|
2017-10-28 11:24:34 -04:00
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-06-26 18:14:01 +02:00
|
|
|
<Grid Grid.Column="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="50" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Column="0" Grid.Row="0" x:Uid="ReorderEntriesLabel" Margin="10,10,0,0" Visibility="{Binding IsEditMode, Converter={StaticResource BooleanToVisibilityConverter}}" Style="{StaticResource BodyTextBlockStyle}" />
|
2020-04-29 16:39:20 +02:00
|
|
|
<HyperlinkButton Grid.Column="2" Grid.Row="0" VerticalAlignment="Top" Command="{Binding CreateEntryCommand}" HorizontalAlignment="Right">
|
2018-06-26 18:14:01 +02:00
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<SymbolIcon Symbol="Add">
|
|
|
|
<ToolTipService.ToolTip>
|
|
|
|
<ToolTip x:Uid="AddEntryTooltip" />
|
|
|
|
</ToolTipService.ToolTip>
|
|
|
|
</SymbolIcon>
|
|
|
|
<TextBlock x:Name="AddEntryTextBlock" x:Uid="GroupCreateEntry" VerticalAlignment="Center" Margin="10,0,0,0" />
|
|
|
|
</StackPanel>
|
|
|
|
</HyperlinkButton>
|
2018-07-18 18:30:56 +02:00
|
|
|
|
2020-06-04 15:31:38 +02:00
|
|
|
<SemanticZoom x:Name="SemanticZoom" Grid.Column="0" Grid.ColumnSpan="3" Grid.Row="1" ViewChangeStarted="SemanticZoom_ViewChangeStarted" ScrollViewer.HorizontalScrollBarVisibility="Visible">
|
2018-06-26 18:14:01 +02:00
|
|
|
<SemanticZoom.ZoomedInView>
|
|
|
|
<!-- Horizontal scrolling grid -->
|
|
|
|
<GridView
|
|
|
|
x:Name="GridView"
|
2020-06-02 15:57:14 +02:00
|
|
|
ItemsSource="{Binding Entries}"
|
2018-06-26 18:14:01 +02:00
|
|
|
AutomationProperties.AutomationId="ItemGridView"
|
|
|
|
AutomationProperties.Name="Entries"
|
|
|
|
TabIndex="1"
|
|
|
|
IsSynchronizedWithCurrentItem="False"
|
|
|
|
BorderBrush="{StaticResource ListViewItemSelectedBackgroundThemeBrush}"
|
|
|
|
AllowDrop="True"
|
2020-05-11 19:22:41 +02:00
|
|
|
CanReorderItems="{Binding IsEditMode}"
|
|
|
|
CanDragItems="{Binding IsEditMode}">
|
2018-06-26 18:14:01 +02:00
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:DataTriggerBehavior Binding="{Binding IsEditMode}" Value="False">
|
2020-06-08 14:16:54 +02:00
|
|
|
<actions:SetupFocusAction TargetObject="{Binding ElementName=GridView}" />
|
2018-06-26 18:14:01 +02:00
|
|
|
</core:DataTriggerBehavior>
|
2020-06-04 16:29:26 +02:00
|
|
|
<core:EventTriggerBehavior EventName="SelectionChanged">
|
|
|
|
<core:InvokeCommandAction Command="{Binding GoToEntryCommand}" CommandParameter="{Binding SelectedItem, ElementName=GridView}" />
|
|
|
|
</core:EventTriggerBehavior>
|
2018-06-26 18:14:01 +02:00
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
<GridView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid Height="110" Width="480" x:Name="EntryGrid">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
2020-04-29 16:39:20 +02:00
|
|
|
<Border Grid.Column="0" Background="{Binding BackgroundColor, ConverterParameter={StaticResource MainColorBrush}, Converter={StaticResource ColorToBrushConverter}}">
|
2018-06-26 18:14:01 +02:00
|
|
|
<Viewbox MaxHeight="50" Width="100">
|
2020-04-29 16:39:20 +02:00
|
|
|
<SymbolIcon Symbol="{Binding Icon, Converter={StaticResource IconToSymbolConverter}}" Foreground="{StaticResource TextColorLightBrush}" />
|
2018-06-26 18:14:01 +02:00
|
|
|
</Viewbox>
|
|
|
|
</Border>
|
|
|
|
<StackPanel Grid.Column="1" VerticalAlignment="Top" Margin="10,10,0,0" >
|
2020-03-27 13:27:29 +01:00
|
|
|
<TextBlock x:Name="NameTextBlock" Text="{Binding Title}" Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap" Foreground="{Binding ForegroundColor, ConverterParameter={StaticResource TextBoxForegroundThemeBrush}, Converter={StaticResource ColorToBrushConverter}}"/>
|
2018-06-26 18:14:01 +02:00
|
|
|
<TextBlock Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap" />
|
2020-03-30 19:43:04 +02:00
|
|
|
<TextBlock Text="{Binding Username}" Style="{StaticResource BodyTextBlockStyle}" Foreground="{Binding ForegroundColor, ConverterParameter={StaticResource TextBoxForegroundThemeBrush}, Converter={StaticResource ColorToBrushConverter}}" MaxHeight="60" />
|
2018-06-26 18:14:01 +02:00
|
|
|
<TextBlock Text="{Binding Url}" Style="{StaticResource BodyTextBlockStyle}" Foreground="{Binding ForegroundColor, ConverterParameter={StaticResource TextBoxForegroundThemeBrush}, Converter={StaticResource ColorToBrushConverter}}" MaxHeight="60" />
|
|
|
|
</StackPanel>
|
2020-05-04 20:56:19 +02:00
|
|
|
<Button Grid.Column="2" Style="{StaticResource NoBorderButtonStyle}" Background="{StaticResource AppBarBackgroundThemeBrush}" VerticalAlignment="Bottom">
|
2018-06-26 18:14:01 +02:00
|
|
|
<SymbolIcon Symbol="More" />
|
|
|
|
<Button.Flyout>
|
|
|
|
<MenuFlyout>
|
|
|
|
<MenuFlyoutItem x:Uid="EntryItemCopyLogin">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
2020-03-30 19:43:04 +02:00
|
|
|
<actions:ClipboardAction Text="{Binding Username}" />
|
2020-03-27 13:27:29 +01:00
|
|
|
<actions:ToastAction x:Uid="ToastCopyLogin" Title="{Binding Title}" />
|
2018-06-26 18:14:01 +02:00
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</MenuFlyoutItem>
|
|
|
|
<MenuFlyoutItem x:Uid="EntryItemCopyPassword">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
2020-05-18 14:14:28 +02:00
|
|
|
<actions:ClipboardAction Text="{Binding Password}" IsProtected="True" />
|
2020-03-27 13:27:29 +01:00
|
|
|
<actions:ToastAction x:Uid="ToastCopyPassword" Title="{Binding Title}" />
|
2018-06-26 18:14:01 +02:00
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</MenuFlyoutItem>
|
2020-05-13 15:14:58 +02:00
|
|
|
<MenuFlyoutItem x:Uid="EntryItemCopyUrl" IsEnabled="{Binding IsValidUrl}">
|
2018-06-26 18:14:01 +02:00
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
|
|
|
<actions:NavigateToUrlAction Url="{Binding Url}" />
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</MenuFlyoutItem>
|
|
|
|
</MenuFlyout>
|
|
|
|
</Button.Flyout>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridView.ItemTemplate>
|
|
|
|
</GridView>
|
|
|
|
</SemanticZoom.ZoomedInView>
|
|
|
|
<SemanticZoom.ZoomedOutView>
|
|
|
|
<GridView
|
|
|
|
ItemsSource="{Binding Source={StaticResource EntriesZoomedOutViewSource}}"
|
|
|
|
SelectionMode="None"
|
|
|
|
IsSynchronizedWithCurrentItem="False">
|
2020-06-02 13:16:36 +02:00
|
|
|
<GridView.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<VariableSizedWrapGrid Orientation="Vertical" ItemWidth="140" />
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</GridView.ItemsPanel>
|
2018-06-26 18:14:01 +02:00
|
|
|
<GridView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
2020-06-02 13:16:36 +02:00
|
|
|
<TextBlock Width="100" Margin="5,0,0,0" Text="{Binding Title}" Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap"/>
|
2018-06-26 18:14:01 +02:00
|
|
|
</DataTemplate>
|
|
|
|
</GridView.ItemTemplate>
|
|
|
|
<GridView.GroupStyle>
|
|
|
|
<GroupStyle HidesIfEmpty="True">
|
|
|
|
<GroupStyle.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
2020-06-02 13:16:36 +02:00
|
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Left">
|
|
|
|
<TextBlock Text="{Binding Key}" Width="50" Margin="20" Foreground="{StaticResource MainColorBrush}" Style="{StaticResource SubheaderTextBlockStyle}" TextAlignment="Center" />
|
|
|
|
<Border BorderBrush="DarkGray" BorderThickness="0,0,0,1" />
|
|
|
|
</StackPanel>
|
2018-06-26 18:14:01 +02:00
|
|
|
</DataTemplate>
|
|
|
|
</GroupStyle.HeaderTemplate>
|
|
|
|
</GroupStyle>
|
|
|
|
</GridView.GroupStyle>
|
|
|
|
</GridView>
|
|
|
|
</SemanticZoom.ZoomedOutView>
|
|
|
|
</SemanticZoom>
|
|
|
|
</Grid>
|
2020-06-04 15:31:38 +02:00
|
|
|
<userControls:HamburgerMenuUserControl
|
|
|
|
Grid.Column="0"
|
|
|
|
x:Name="HamburgerMenu"
|
|
|
|
x:Uid="GroupsLeftListView"
|
2020-06-08 19:17:11 +02:00
|
|
|
HeaderLabel="{Binding Title}"
|
2020-06-04 15:31:38 +02:00
|
|
|
ItemsSource="{Binding Groups}"
|
|
|
|
CanDragItems="{Binding IsEditMode}"
|
|
|
|
ActionButtonCommand="{Binding CreateGroupCommand}"
|
2020-06-04 16:29:26 +02:00
|
|
|
IsButtonVisible="Visible">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="SelectionChanged">
|
|
|
|
<core:InvokeCommandAction Command="{Binding GoToGroupCommand}" CommandParameter="{Binding SelectedItem, ElementName=HamburgerMenu}" />
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</userControls:HamburgerMenuUserControl>
|
2017-10-28 11:24:34 -04:00
|
|
|
</Grid>
|
2017-09-12 18:20:32 +02:00
|
|
|
<!-- Back button and page title -->
|
2017-10-27 16:28:13 +02:00
|
|
|
<Grid Grid.Row="0" Background="{ThemeResource AppBarBackgroundThemeBrush}">
|
2017-09-12 18:20:32 +02:00
|
|
|
<Grid.ColumnDefinitions>
|
2020-05-04 20:56:19 +02:00
|
|
|
<ColumnDefinition Width="{StaticResource MenuWidthGridLength}"/>
|
2020-06-08 19:17:11 +02:00
|
|
|
<ColumnDefinition Width="Auto"/>
|
2020-05-11 19:22:41 +02:00
|
|
|
<ColumnDefinition Width="Auto"/>
|
2017-09-12 18:20:32 +02:00
|
|
|
<ColumnDefinition Width="*"/>
|
2017-12-11 19:00:14 +01:00
|
|
|
<ColumnDefinition Width="Auto"/>
|
2017-09-12 18:20:32 +02:00
|
|
|
</Grid.ColumnDefinitions>
|
2017-10-27 16:28:13 +02:00
|
|
|
<Button Grid.Column="0"
|
2020-04-21 19:12:26 +02:00
|
|
|
Command="{Binding GoBackCommand}"
|
2020-05-04 20:56:19 +02:00
|
|
|
Height="{StaticResource MenuHeight}"
|
|
|
|
Width="{StaticResource MenuWidth}"
|
2017-10-03 16:06:49 +02:00
|
|
|
AutomationProperties.Name="Back"
|
|
|
|
AutomationProperties.AutomationId="BackButton"
|
2017-10-27 16:28:13 +02:00
|
|
|
AutomationProperties.ItemType="Navigation Button"
|
|
|
|
Style="{StaticResource NoBorderButtonStyle}">
|
|
|
|
<SymbolIcon Symbol="Back" />
|
|
|
|
</Button>
|
2020-05-11 19:22:41 +02:00
|
|
|
<Button Grid.Column="1"
|
|
|
|
Height="{StaticResource MenuHeight}"
|
|
|
|
Command="{Binding GoToParentCommand}"
|
|
|
|
Style="{StaticResource NoBorderButtonStyle}">
|
2020-06-08 19:17:11 +02:00
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<SymbolIcon Symbol="Up" />
|
|
|
|
<TextBlock x:Name="UpButtonText" Margin="10,2,0,0" Text="{Binding ParentGroupName}" FontStyle="Italic" HorizontalAlignment="Center" />
|
|
|
|
</StackPanel>
|
2020-05-11 19:22:41 +02:00
|
|
|
<ToolTipService.ToolTip>
|
|
|
|
<ToolTip Content="{Binding ParentGroupName}" />
|
|
|
|
</ToolTipService.ToolTip>
|
|
|
|
</Button>
|
2020-06-08 19:17:11 +02:00
|
|
|
<!--<Viewbox Grid.Column="2" MaxHeight="200" Visibility="{Binding IsEditMode, Converter={StaticResource BooleanToVisibilityConverter}}">
|
2020-05-11 19:22:41 +02:00
|
|
|
<userControls:SymbolPickerUserControl Width="100" Height="70" SelectedSymbol="{Binding Icon, Mode=TwoWay}" />
|
|
|
|
</Viewbox>
|
|
|
|
<Viewbox Grid.Column="2" MaxHeight="200" Visibility="{Binding IsEditMode, Converter={StaticResource InverseBooleanToVisibilityConverter}}">
|
|
|
|
<SymbolIcon Symbol="{Binding Icon}" Width="100" Height="70" />
|
2020-06-08 19:17:11 +02:00
|
|
|
</Viewbox>-->
|
2020-05-11 19:22:41 +02:00
|
|
|
<userControls:TopMenuUserControl x:Name="TopMenu" Grid.Column="4"
|
2018-07-11 12:15:56 +02:00
|
|
|
SortButtonVisibility="{Binding IsEditMode, Converter={StaticResource BooleanToVisibilityConverter}}"
|
2020-06-08 19:17:11 +02:00
|
|
|
EditButtonVisibility="Visible"
|
2018-07-05 18:32:42 +02:00
|
|
|
IsEditButtonChecked="{Binding IsEditMode, Mode=TwoWay}"
|
|
|
|
SaveCommand="{Binding SaveCommand}"
|
2020-04-14 13:44:07 +02:00
|
|
|
MoveCommand="{Binding MoveCommand}"
|
2018-07-11 12:15:56 +02:00
|
|
|
SortEntriesCommand="{Binding SortEntriesCommand}"
|
2020-04-16 17:16:03 +02:00
|
|
|
SortGroupsCommand="{Binding SortGroupsCommand}"
|
2020-04-22 11:58:06 +02:00
|
|
|
DeleteCommand="{Binding DeleteCommand}">
|
2018-07-05 18:32:42 +02:00
|
|
|
<interactivity:Interaction.Behaviors>
|
2018-07-25 18:08:59 +02:00
|
|
|
<core:EventTriggerBehavior EventName="EditButtonClick">
|
|
|
|
<actions:SetupFocusAction TargetObject="{Binding ElementName=TitleTextBox}" />
|
|
|
|
</core:EventTriggerBehavior>
|
2018-07-05 18:32:42 +02:00
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</userControls:TopMenuUserControl>
|
2020-05-04 20:56:19 +02:00
|
|
|
|
2017-09-12 18:20:32 +02:00
|
|
|
</Grid>
|
2017-11-29 19:13:38 +01:00
|
|
|
<VisualStateManager.VisualStateGroups>
|
2020-05-05 16:59:49 +02:00
|
|
|
<VisualStateGroup x:Name="PageLayout">
|
2017-12-11 19:00:14 +01:00
|
|
|
<VisualState x:Name="Small">
|
|
|
|
<Storyboard>
|
2018-07-20 17:24:02 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="AddEntryTextBlock" Storyboard.TargetProperty="Visibility">
|
2017-12-11 19:00:14 +01:00
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-05-05 16:59:49 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HamburgerMenu" Storyboard.TargetProperty="IsOpen">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="False"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-04 15:31:38 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="SemanticZoom" Storyboard.TargetProperty="Margin">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="-60,0,0,0"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-08 19:17:11 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="UpButtonText" Storyboard.TargetProperty="Visibility">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-05-05 16:59:49 +02:00
|
|
|
</Storyboard>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="Medium">
|
|
|
|
<Storyboard>
|
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HamburgerMenu" Storyboard.TargetProperty="IsOpen">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="False"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-04 15:31:38 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="SemanticZoom" Storyboard.TargetProperty="Margin">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,0"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-08 19:17:11 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="UpButtonText" Storyboard.TargetProperty="Visibility">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2017-12-11 19:00:14 +01:00
|
|
|
</Storyboard>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="Large">
|
|
|
|
<Storyboard>
|
2018-07-20 17:24:02 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="AddEntryTextBlock" Storyboard.TargetProperty="Visibility">
|
2017-12-11 19:00:14 +01:00
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-05-05 16:59:49 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HamburgerMenu" Storyboard.TargetProperty="IsOpen">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="True"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-04 15:31:38 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="SemanticZoom" Storyboard.TargetProperty="Margin">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,0"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2020-06-08 19:17:11 +02:00
|
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="UpButtonText" Storyboard.TargetProperty="Visibility">
|
|
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
|
|
|
|
</ObjectAnimationUsingKeyFrames>
|
2017-12-11 19:00:14 +01:00
|
|
|
</Storyboard>
|
|
|
|
</VisualState>
|
|
|
|
</VisualStateGroup>
|
2017-11-29 19:13:38 +01:00
|
|
|
</VisualStateManager.VisualStateGroups>
|
2017-09-12 18:20:32 +02:00
|
|
|
</Grid>
|
2017-10-03 18:38:31 +02:00
|
|
|
</Page>
|