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:viewModels="using:ModernKeePass.ViewModels"
|
|
|
|
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-10-26 18:57:39 +02:00
|
|
|
xmlns:actions="using:ModernKeePass.Actions"
|
|
|
|
xmlns:templateSelectors="using:ModernKeePass.TemplateSelectors"
|
2017-10-02 18:40:54 +02:00
|
|
|
x:Name="PageRoot"
|
2017-09-13 18:37:44 +02:00
|
|
|
x:Class="ModernKeePass.Pages.GroupDetailPage"
|
2017-09-15 11:24:14 +02:00
|
|
|
mc:Ignorable="d" >
|
2017-09-29 18:08:20 +02:00
|
|
|
<Page.Resources>
|
2017-10-03 16:06:49 +02:00
|
|
|
<SolidColorBrush x:Key="Transparent" Color="Transparent"/>
|
2017-10-05 18:40:24 +02:00
|
|
|
<SolidColorBrush x:Key="SystemColor" Color="{StaticResource SystemColorButtonFaceColor}" />
|
2017-10-03 16:06:49 +02:00
|
|
|
<converters:ColorToBrushConverter x:Key="ColorToBrushConverter"/>
|
2017-10-30 18:34:38 +01:00
|
|
|
<converters:BooleanToFontStyleConverter x:Key="BooleanToFontStyleConverter"/>
|
2017-09-29 18:08:20 +02:00
|
|
|
</Page.Resources>
|
2017-09-15 11:24:14 +02:00
|
|
|
<Page.DataContext>
|
2017-10-02 18:40:54 +02:00
|
|
|
<viewModels:GroupVm />
|
2017-09-15 11:24:14 +02:00
|
|
|
</Page.DataContext>
|
2017-10-24 18:43:46 +02:00
|
|
|
<Page.BottomAppBar>
|
2017-10-25 18:29:50 +02:00
|
|
|
<CommandBar x:Name="CommandBar" VerticalAlignment="Center">
|
2017-10-24 18:43:46 +02:00
|
|
|
<CommandBar.SecondaryCommands>
|
2017-10-25 18:29:50 +02:00
|
|
|
<AppBarButton Icon="Save" Label="Save">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
|
|
|
<core:CallMethodAction TargetObject="{Binding}" MethodName="Save"/>
|
|
|
|
<core:ChangePropertyAction TargetObject="{Binding ElementName=CommandBar}" PropertyName="IsOpen" Value="False" />
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</AppBarButton>
|
2017-10-30 18:34:38 +01:00
|
|
|
<AppBarButton Icon="Setting" Label="Settings">
|
2017-10-27 16:28:13 +02:00
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
|
|
|
<core:NavigateToPageAction TargetPage="ModernKeePass.Pages.SettingsPage" />
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
2017-10-30 18:34:38 +01:00
|
|
|
</AppBarButton>
|
2017-10-24 18:43:46 +02:00
|
|
|
</CommandBar.SecondaryCommands>
|
2017-10-25 18:29:50 +02:00
|
|
|
<AppBarToggleButton Icon="Edit" Label="Edit" IsChecked="{Binding IsEditMode, Mode=TwoWay}">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Click">
|
|
|
|
<core:ChangePropertyAction TargetObject="{Binding ElementName=CommandBar}" PropertyName="IsOpen" Value="False" />
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</AppBarToggleButton>
|
|
|
|
<AppBarButton Icon="Delete" Label="Delete" IsEnabled="{Binding IsNotRoot}" Click="DeleteButton_Click" />
|
2017-10-24 18:43:46 +02:00
|
|
|
</CommandBar>
|
|
|
|
</Page.BottomAppBar>
|
2017-10-25 18:29:50 +02:00
|
|
|
<Grid>
|
2017-09-29 18:08:20 +02:00
|
|
|
<Grid.Resources>
|
|
|
|
<CollectionViewSource
|
2017-10-02 18:40:54 +02:00
|
|
|
x:Name="GroupsViewSource"
|
2017-10-10 18:55:16 +02:00
|
|
|
Source="{Binding Groups}" />
|
2017-09-29 18:08:20 +02:00
|
|
|
<CollectionViewSource
|
2017-10-02 18:40:54 +02:00
|
|
|
x:Name="EntriesViewSource"
|
2017-10-06 16:21:12 -04:00
|
|
|
Source="{Binding Entries}" />
|
|
|
|
<CollectionViewSource
|
|
|
|
x:Name="EntriesZoomedOutViewSource"
|
|
|
|
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>
|
2017-10-31 12:14:26 +01:00
|
|
|
<RowDefinition Height="50"/>
|
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>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ListView
|
|
|
|
Grid.Column="0"
|
|
|
|
x:Name="LeftListView"
|
|
|
|
Margin="0,0,0,-10"
|
|
|
|
SelectionChanged="groups_SelectionChanged"
|
|
|
|
IsSwipeEnabled="false"
|
|
|
|
IsSynchronizedWithCurrentItem="False"
|
|
|
|
DataContext="{Binding DataContext, ElementName=PageRoot}"
|
|
|
|
RequestedTheme="Dark"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
|
|
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}">
|
|
|
|
<ListView.Resources>
|
|
|
|
<DataTemplate x:Name="Collapsed">
|
|
|
|
<SymbolIcon Symbol="{Binding IconSymbol}" Margin="8,0,0,0">
|
|
|
|
<ToolTipService.ToolTip>
|
|
|
|
<ToolTip Content="{Binding Name}" />
|
|
|
|
</ToolTipService.ToolTip>
|
|
|
|
</SymbolIcon>
|
|
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Name="Expanded">
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<SymbolIcon Symbol="{Binding IconSymbol}" Margin="8,0,0,0" />
|
2017-10-30 18:34:38 +01:00
|
|
|
<TextBlock Text="{Binding Name}" FontWeight="{Binding FontWeight}" TextWrapping="NoWrap" VerticalAlignment="Center" Margin="30,0,20,0" FontStyle="{Binding IsSelected, Converter={StaticResource BooleanToFontStyleConverter}}" />
|
2017-10-28 11:24:34 -04:00
|
|
|
</StackPanel>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.Resources>
|
|
|
|
<ListView.ItemsSource>
|
|
|
|
<Binding Source="{StaticResource GroupsViewSource}"/>
|
|
|
|
</ListView.ItemsSource>
|
|
|
|
<ListView.ItemContainerStyle>
|
|
|
|
<Style TargetType="ListViewItem">
|
|
|
|
<Setter Property="VerticalContentAlignment" Value="Stretch" />
|
|
|
|
<!--<Setter Property="HorizontalContentAlignment" Value="Center" />-->
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
|
|
|
<Setter Property="Margin" Value="0"/>
|
|
|
|
</Style>
|
|
|
|
</ListView.ItemContainerStyle>
|
|
|
|
<ListView.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ToggleButton Style="{StaticResource HamburgerToggleButton}">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:EventTriggerBehavior EventName="Loaded">
|
|
|
|
<core:ChangePropertyAction PropertyName="ItemTemplate" Value="{StaticResource Collapsed}" TargetObject="{Binding ElementName=LeftListView}"/>
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
<core:EventTriggerBehavior EventName="Checked">
|
|
|
|
<core:ChangePropertyAction PropertyName="ItemTemplate" Value="{StaticResource Expanded}" TargetObject="{Binding ElementName=LeftListView}"/>
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
<core:EventTriggerBehavior EventName="Unchecked">
|
|
|
|
<core:ChangePropertyAction PropertyName="ItemTemplate" Value="{StaticResource Collapsed}" TargetObject="{Binding ElementName=LeftListView}"/>
|
|
|
|
</core:EventTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</ToggleButton>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.HeaderTemplate>
|
|
|
|
</ListView>
|
2017-09-12 18:20:32 +02:00
|
|
|
<!-- Horizontal scrolling grid -->
|
2017-10-28 11:24:34 -04:00
|
|
|
<SemanticZoom Grid.Column="1" ViewChangeStarted="SemanticZoom_ViewChangeStarted" Margin="0,30,0,0">
|
2017-10-02 18:40:54 +02:00
|
|
|
<SemanticZoom.ZoomedInView>
|
2017-10-28 11:24:34 -04:00
|
|
|
<GridView
|
2017-10-03 18:38:31 +02:00
|
|
|
x:Name="GridView"
|
2017-10-02 18:40:54 +02:00
|
|
|
AutomationProperties.AutomationId="ItemGridView"
|
2017-10-03 18:38:31 +02:00
|
|
|
AutomationProperties.Name="Entries"
|
2017-10-02 18:40:54 +02:00
|
|
|
TabIndex="1"
|
2017-10-03 18:38:31 +02:00
|
|
|
SelectionChanged="entries_SelectionChanged"
|
2017-10-05 18:40:24 +02:00
|
|
|
IsSynchronizedWithCurrentItem="False">
|
2017-10-25 18:29:50 +02:00
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:DataTriggerBehavior Binding="{Binding IsEditMode}" Value="False">
|
|
|
|
<actions:SetupFocusAction TargetObject="{Binding ElementName=GridView}" />
|
|
|
|
</core:DataTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
2017-10-03 18:38:31 +02:00
|
|
|
<GridView.Resources>
|
|
|
|
<DataTemplate x:Name="GroupFirstItem">
|
|
|
|
<Border
|
|
|
|
BorderThickness="2"
|
2017-10-06 16:33:44 +02:00
|
|
|
BorderBrush="{StaticResource SystemColor}"
|
2017-10-06 17:57:36 +02:00
|
|
|
Background="{StaticResource HubSectionHeaderPressedForegroundThemeBrush}">
|
2017-10-05 18:40:24 +02:00
|
|
|
<Grid Height="110" Width="480">
|
2017-10-03 18:38:31 +02:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
2017-10-30 18:34:38 +01:00
|
|
|
<SymbolIcon Grid.Column="0" Symbol="{Binding IconSymbol}" Width="100" Height="100" RenderTransformOrigin="0.5,0.5" Foreground="{ThemeResource TextBoxBackgroundThemeBrush}" >
|
2017-10-06 17:57:36 +02:00
|
|
|
<SymbolIcon.RenderTransform>
|
|
|
|
<CompositeTransform ScaleX="2" TranslateX="0" TranslateY="0" ScaleY="2"/>
|
|
|
|
</SymbolIcon.RenderTransform>
|
|
|
|
</SymbolIcon>
|
2017-10-30 18:34:38 +01:00
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Name}" FontWeight="Bold" Style="{ThemeResource TitleTextBlockStyle}" Foreground="{ThemeResource TextBoxBackgroundThemeBrush}" TextWrapping="NoWrap" VerticalAlignment="Center" Margin="13,0,0,5"/>
|
2017-10-03 18:38:31 +02:00
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Name="GroupOtherItem">
|
2017-10-18 18:49:02 +02:00
|
|
|
<Grid Height="110" Width="480" x:Name="EntryGrid" >
|
2017-10-06 17:57:36 +02:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border
|
|
|
|
Grid.Column="0"
|
|
|
|
BorderThickness="2"
|
|
|
|
BorderBrush="{StaticResource SystemColor}"
|
|
|
|
Background="{Binding BackgroundColor, ConverterParameter={StaticResource Transparent}, Converter={StaticResource ColorToBrushConverter}}">
|
|
|
|
<SymbolIcon Symbol="{Binding IconSymbol}" Width="100" Height="100" RenderTransformOrigin="0.5,0.5" >
|
|
|
|
<SymbolIcon.RenderTransform>
|
|
|
|
<CompositeTransform ScaleX="2" TranslateX="0" TranslateY="0" ScaleY="2"/>
|
|
|
|
</SymbolIcon.RenderTransform>
|
|
|
|
</SymbolIcon>
|
|
|
|
</Border>
|
|
|
|
<StackPanel Grid.Column="1" VerticalAlignment="Top" Margin="10,10,0,0" >
|
2017-10-18 18:49:02 +02:00
|
|
|
<TextBlock x:Name="NameTextBlock" Text="{Binding Name}" Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap" Foreground="{Binding ForegroundColor, ConverterParameter={StaticResource TextBoxForegroundThemeBrush}, Converter={StaticResource ColorToBrushConverter}}"/>
|
|
|
|
<TextBlock Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap"/>
|
|
|
|
<TextBlock Text="{Binding UserName}" Style="{StaticResource BodyTextBlockStyle}" MaxHeight="60" />
|
|
|
|
<TextBlock Text="{Binding Url}" Style="{StaticResource BodyTextBlockStyle}" MaxHeight="60" />
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
2017-10-03 18:38:31 +02:00
|
|
|
</DataTemplate>
|
|
|
|
</GridView.Resources>
|
2017-10-05 14:50:42 +02:00
|
|
|
<GridView.ItemsSource>
|
|
|
|
<Binding Source="{StaticResource EntriesViewSource}"/>
|
|
|
|
</GridView.ItemsSource>
|
|
|
|
<GridView.DataContext>
|
|
|
|
<viewModels:EntryVm/>
|
|
|
|
</GridView.DataContext>
|
2017-10-03 16:06:49 +02:00
|
|
|
<GridView.ItemTemplateSelector>
|
2017-10-26 18:57:39 +02:00
|
|
|
<templateSelectors:FirstItemDataTemplateSelector
|
2017-10-03 16:06:49 +02:00
|
|
|
FirstItem="{StaticResource GroupFirstItem}"
|
|
|
|
OtherItem="{StaticResource GroupOtherItem}" />
|
2017-10-03 18:38:31 +02:00
|
|
|
</GridView.ItemTemplateSelector>
|
|
|
|
<GridView.ItemContainerStyle>
|
|
|
|
<Style TargetType="FrameworkElement">
|
|
|
|
<Setter Property="Margin" Value="52,0,0,2"/>
|
|
|
|
</Style>
|
|
|
|
</GridView.ItemContainerStyle>
|
2017-10-02 18:40:54 +02:00
|
|
|
</GridView>
|
|
|
|
</SemanticZoom.ZoomedInView>
|
|
|
|
|
|
|
|
<SemanticZoom.ZoomedOutView>
|
|
|
|
<ListView
|
2017-10-03 18:38:31 +02:00
|
|
|
x:Name="SemanticListView"
|
2017-10-06 16:21:12 -04:00
|
|
|
ItemsSource="{Binding Source={StaticResource EntriesZoomedOutViewSource}}"
|
2017-10-02 18:40:54 +02:00
|
|
|
IsSwipeEnabled="false"
|
|
|
|
SelectionChanged="groups_SelectionChanged"
|
2017-10-06 16:21:12 -04:00
|
|
|
IsSynchronizedWithCurrentItem="False">
|
|
|
|
<ListView.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal" />
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ListView.ItemsPanel>
|
2017-10-02 18:40:54 +02:00
|
|
|
<ListView.ItemTemplate>
|
2017-09-29 18:08:20 +02:00
|
|
|
<DataTemplate>
|
2017-10-06 16:21:12 -04:00
|
|
|
<StackPanel Orientation="Vertical">
|
2017-10-17 18:46:05 +02:00
|
|
|
<TextBlock Text="{Binding Name}" Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap"/>
|
2017-10-06 16:21:12 -04:00
|
|
|
</StackPanel>
|
2017-09-29 18:08:20 +02:00
|
|
|
</DataTemplate>
|
2017-10-02 18:40:54 +02:00
|
|
|
</ListView.ItemTemplate>
|
2017-10-06 16:21:12 -04:00
|
|
|
<ListView.GroupStyle>
|
|
|
|
<GroupStyle HidesIfEmpty="True">
|
|
|
|
<GroupStyle.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
2017-10-09 18:40:02 +02:00
|
|
|
<Grid Background="LightGray" Margin="0,0,10,0" HorizontalAlignment="Left">
|
2017-10-25 14:36:52 -04:00
|
|
|
<TextBlock Text="{Binding Key}" Width="40" Foreground="Black" Margin="30" Style="{StaticResource HeaderTextBlockStyle}"/>
|
2017-10-06 16:21:12 -04:00
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</GroupStyle.HeaderTemplate>
|
|
|
|
</GroupStyle>
|
|
|
|
</ListView.GroupStyle>
|
2017-09-29 18:08:20 +02:00
|
|
|
</ListView>
|
2017-10-02 18:40:54 +02:00
|
|
|
</SemanticZoom.ZoomedOutView>
|
|
|
|
</SemanticZoom>
|
2017-10-03 18:38:31 +02:00
|
|
|
|
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>
|
2017-10-27 16:28:13 +02:00
|
|
|
<ColumnDefinition Width="60"/>
|
2017-09-12 18:20:32 +02:00
|
|
|
<ColumnDefinition Width="*"/>
|
2017-10-24 18:43:46 +02:00
|
|
|
<ColumnDefinition Width="400"/>
|
2017-09-12 18:20:32 +02:00
|
|
|
</Grid.ColumnDefinitions>
|
2017-10-27 16:28:13 +02:00
|
|
|
<Button Grid.Column="0"
|
|
|
|
x:Name="BackButton"
|
2017-10-03 16:06:49 +02:00
|
|
|
Command="{Binding NavigationHelper.GoBackCommand, ElementName=PageRoot}"
|
2017-10-31 12:14:26 +01:00
|
|
|
Height="50"
|
2017-10-27 16:28:13 +02:00
|
|
|
Width="50"
|
2017-10-06 16:33:44 +02:00
|
|
|
VerticalAlignment="Center"
|
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>
|
2017-10-31 12:14:26 +01:00
|
|
|
<StackPanel Grid.Column="1" >
|
|
|
|
<TextBox
|
|
|
|
x:Name="TitleTextBox"
|
|
|
|
Text="{Binding Name, Mode=TwoWay}"
|
|
|
|
Foreground="{ThemeResource DefaultTextForegroundThemeBrush}"
|
|
|
|
Background="Transparent"
|
|
|
|
IsHitTestVisible="{Binding IsEditMode}"
|
|
|
|
BorderThickness="0"
|
|
|
|
FontSize="20"
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
TextWrapping="NoWrap"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
PlaceholderText="New group name...">
|
|
|
|
<interactivity:Interaction.Behaviors>
|
|
|
|
<core:DataTriggerBehavior Binding="{Binding IsEditMode}" Value="True">
|
|
|
|
<actions:SetupFocusAction TargetObject="{Binding ElementName=TitleTextBox}" />
|
|
|
|
</core:DataTriggerBehavior>
|
|
|
|
</interactivity:Interaction.Behaviors>
|
|
|
|
</TextBox>
|
|
|
|
<TextBlock FontSize="12" Text="{Binding Path}" />
|
|
|
|
</StackPanel>
|
2017-10-27 16:28:13 +02:00
|
|
|
<SearchBox Grid.Column="2" PlaceholderText="Search..." Width="350" Background="{ThemeResource TextBoxDisabledBackgroundThemeBrush}" BorderThickness="0" FontSize="18" SuggestionsRequested="SearchBox_OnSuggestionsRequested" SearchHistoryEnabled="False" ResultSuggestionChosen="SearchBox_OnResultSuggestionChosen" />
|
2017-09-12 18:20:32 +02:00
|
|
|
</Grid>
|
|
|
|
</Grid>
|
2017-10-03 18:38:31 +02:00
|
|
|
</Page>
|