2020-03-27 23:58:53 +08:00
|
|
|
<Page
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerLauncherPage"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Views"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
<Grid ColumnSpacing="{StaticResource DefaultColumnSpacing}" RowSpacing="{StaticResource DefaultRowSpacing}">
|
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
|
|
<VisualState x:Name="WideLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="1" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="0" />
|
|
|
|
</VisualState.Setters>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="SmallLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="1" />
|
|
|
|
</VisualState.Setters>
|
|
|
|
</VisualState>
|
|
|
|
</VisualStateGroup>
|
|
|
|
</VisualStateManager.VisualStateGroups>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
2020-03-31 20:32:22 +08:00
|
|
|
<TextBlock Text="A quick launcher that has additional capabilities without sacrificing performance." Style="{StaticResource BodyTextBlockStyle}"
|
2020-03-27 23:58:53 +08:00
|
|
|
TextWrapping="Wrap"/>
|
|
|
|
|
|
|
|
<ToggleSwitch Header="Enable PowerLauncher"
|
|
|
|
IsOn="True"
|
|
|
|
Margin="{StaticResource SmallTopMargin}" />
|
|
|
|
|
|
|
|
<TextBlock Text="Search & results"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
|
|
|
<ComboBox Header="Search result preference"
|
|
|
|
SelectedIndex="0"
|
|
|
|
MinWidth="320"
|
|
|
|
Margin="{StaticResource SmallTopMargin}">
|
|
|
|
<ComboBoxItem>Most commonly used</ComboBoxItem>
|
|
|
|
<ComboBoxItem>Most recently used</ComboBoxItem>
|
|
|
|
<ComboBoxItem>Alphabetical order</ComboBoxItem>
|
|
|
|
<ComboBoxItem>Running processes/opened applications</ComboBoxItem>
|
|
|
|
</ComboBox>
|
|
|
|
|
|
|
|
<ComboBox Header="Search type preference"
|
|
|
|
SelectedIndex="0"
|
|
|
|
MinWidth="320"
|
|
|
|
Margin="{StaticResource SmallTopMargin}">
|
|
|
|
<ComboBoxItem>Application name</ComboBoxItem>
|
|
|
|
<ComboBoxItem>A string that is contained in the application</ComboBoxItem>
|
|
|
|
<ComboBoxItem>Executable name</ComboBoxItem>
|
|
|
|
</ComboBox>
|
|
|
|
|
|
|
|
<muxc:NumberBox Header="Maximum numbers of results"
|
|
|
|
Value="4"
|
|
|
|
Width="320"
|
|
|
|
SpinButtonPlacementMode="Inline"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopMargin}" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="Shortcuts"
|
|
|
|
Width="320"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
|
|
|
<!-- TO DO: Add logic to only allow specific (or combination of) keys as entries -->
|
|
|
|
<TextBox Header="Open PowerLauncher"
|
|
|
|
Width="320"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
|
|
|
<!-- TO DO: Add logic to only allow specific (or combination of) keys as entries -->
|
|
|
|
<TextBox Header="Open file location"
|
|
|
|
Width="320"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
|
|
|
<!-- TO DO: Add logic to only allow specific (or combination of) keys as entries -->
|
|
|
|
<TextBox Header="Copy path location"
|
|
|
|
Width="320"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
|
|
|
<!-- TO DO: Add logic to only allow specific (or combination of) keys as entries -->
|
|
|
|
<TextBox Header="Open console"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="320"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
<CheckBox Content="Override Win+R key"
|
|
|
|
IsChecked="True"
|
2020-03-27 23:58:53 +08:00
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
<CheckBox Content="Override Win+S key"
|
|
|
|
IsChecked="True"
|
2020-03-27 23:58:53 +08:00
|
|
|
Margin="{StaticResource SmallTopMargin}" />
|
|
|
|
|
|
|
|
</StackPanel>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
|
|
|
<StackPanel x:Name="SidePanel"
|
|
|
|
Orientation="Vertical"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
|
|
|
|
|
|
|
<TextBlock Text="About this feature"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
|
|
|
|
|
|
<HyperlinkButton Content="Module overview"/>
|
|
|
|
<HyperlinkButton Content="Give feedback"/>
|
|
|
|
|
|
|
|
<TextBlock Text="Contributors"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
|
|
|
<HyperlinkButton Content="Contributor name"/>
|
|
|
|
<HyperlinkButton Content="Contributor name"/>
|
|
|
|
<HyperlinkButton Content="Contributor name"/>
|
|
|
|
</StackPanel>
|
2020-03-27 23:58:53 +08:00
|
|
|
</Grid>
|
|
|
|
</Page>
|