2014-03-26 17:34:19 +08:00
|
|
|
<Window
|
2016-03-26 12:46:39 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:wox="clr-namespace:Wox"
|
2015-01-05 22:41:17 +08:00
|
|
|
x:Class="Wox.SettingWindow"
|
2016-03-26 12:46:39 +08:00
|
|
|
xmlns:woxPlugin="clr-namespace:Wox.Plugin;assembly=Wox.Plugin"
|
2016-05-04 04:18:26 +08:00
|
|
|
xmlns:image="clr-namespace:Wox.Infrastructure.Image;assembly=Wox.Infrastructure"
|
2016-03-26 12:46:39 +08:00
|
|
|
Icon="Images\app.png"
|
|
|
|
Title="{DynamicResource woxsettings}"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
Height="600" Width="800" PreviewKeyDown="Window_PreviewKeyDown">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Window.Resources>
|
|
|
|
<ListBoxItem HorizontalContentAlignment="Stretch"
|
2016-03-26 12:46:39 +08:00
|
|
|
IsEnabled="False"
|
|
|
|
IsHitTestVisible="False" x:Key="FeatureBoxSeperator">
|
|
|
|
<Separator Width="{Binding ElementName=lbPlugins, Path=ActualWidth}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</ListBoxItem>
|
2016-05-04 04:18:26 +08:00
|
|
|
<image:ImagePathConverter x:Key="ImageConverter" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Window.Resources>
|
2015-09-26 04:43:09 +08:00
|
|
|
<TabControl Height="auto" x:Name="settingTab" SelectionChanged="settingTab_SelectionChanged">
|
2015-01-02 23:07:49 +08:00
|
|
|
<TabItem Header="{DynamicResource general}">
|
2016-03-11 09:13:47 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2016-03-26 12:46:39 +08:00
|
|
|
<CheckBox x:Name="cbStartWithWindows" Unchecked="CbStartWithWindows_OnUnchecked"
|
|
|
|
Checked="CbStartWithWindows_OnChecked" Margin="10">
|
|
|
|
<TextBlock Text="{DynamicResource startWoxOnSystemStartup}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</CheckBox>
|
|
|
|
<CheckBox x:Name="cbHideWhenDeactive" Margin="10">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource hideWoxWhenLoseFocus}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</CheckBox>
|
2014-12-14 23:16:29 +08:00
|
|
|
<CheckBox x:Name="cbDontPromptUpdateMsg" Margin="10">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource dontPromptUpdateMsg}" />
|
2014-12-14 23:16:29 +08:00
|
|
|
</CheckBox>
|
2015-02-20 21:45:42 +08:00
|
|
|
<CheckBox x:Name="cbRememberLastLocation" Margin="10">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource rememberLastLocation}" />
|
2015-02-20 21:45:42 +08:00
|
|
|
</CheckBox>
|
2015-10-08 07:02:36 +08:00
|
|
|
<CheckBox x:Name="cbIgnoreHotkeysOnFullscreen" Margin="10">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource ignoreHotkeysOnFullscreen}" />
|
2015-10-08 06:17:37 +08:00
|
|
|
</CheckBox>
|
2015-01-02 16:16:09 +08:00
|
|
|
<StackPanel Margin="10" Orientation="Horizontal">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource language}" />
|
2015-07-17 15:23:38 +08:00
|
|
|
<ComboBox Margin="10 0 0 0" Width="120" x:Name="cbLanguages" />
|
2015-01-02 16:16:09 +08:00
|
|
|
</StackPanel>
|
2015-07-13 03:13:30 +08:00
|
|
|
<StackPanel Orientation="Horizontal" Margin="10">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource maxShowResults}" />
|
|
|
|
<ComboBox Margin="10 0 0 0" Width="45" Name="comboMaxResultsToShow" />
|
2015-07-13 03:13:30 +08:00
|
|
|
</StackPanel>
|
2016-05-05 08:57:03 +08:00
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<TextBlock Text="{DynamicResource pythonDirectory}" Margin="10"/>
|
|
|
|
<TextBox Width="300" Margin="10" x:Name="PythonDirectory" />
|
|
|
|
<Button Click="SelectPythonDirectoryOnClick" Content="{DynamicResource selectPythonDirectory}" VerticalAlignment="Center"/>
|
|
|
|
</StackPanel>
|
2014-07-04 15:12:22 +08:00
|
|
|
</StackPanel>
|
|
|
|
</TabItem>
|
2015-09-26 04:43:09 +08:00
|
|
|
<TabItem Header="{DynamicResource plugin}" x:Name="tabPlugin">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
<ColumnDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<DockPanel Grid.Column="0">
|
|
|
|
<TextBlock DockPanel.Dock="Top" Margin="10" HorizontalAlignment="Left" Cursor="Hand"
|
|
|
|
MouseUp="tbMorePlugins_MouseUp" x:Name="tbMorePlugins" Foreground="Blue"
|
|
|
|
Text="{DynamicResource browserMorePlugins}" />
|
|
|
|
<ListBox x:Name="lbPlugins" Margin="10, 0, 10, 10" SelectionChanged="lbPlugins_OnSelectionChanged"
|
|
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled" Grid.IsSharedSizeScope="True">
|
2014-07-16 20:17:51 +08:00
|
|
|
<ListBox.Resources>
|
|
|
|
<DataTemplate DataType="{x:Type woxPlugin:PluginPair}">
|
|
|
|
<Grid Height="36" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="3">
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="32" />
|
|
|
|
<ColumnDefinition />
|
2014-07-16 20:17:51 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<Image Width="32" Height="32" HorizontalAlignment="Left"
|
2016-05-04 04:18:26 +08:00
|
|
|
Source="{Binding Metadata.IcoPath,Converter={StaticResource ImageConverter},IsAsync=True}" />
|
2014-07-16 20:17:51 +08:00
|
|
|
<Grid Margin="3 0 3 0" Grid.Column="1" HorizontalAlignment="Stretch">
|
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition Height="Auto" />
|
2014-07-16 20:17:51 +08:00
|
|
|
</Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock VerticalAlignment="Center" ToolTip="{Binding Metadata.Name}"
|
|
|
|
x:Name="tbTitle" Text="{Binding Metadata.Name}" />
|
|
|
|
<TextBlock ToolTip="{Binding Metadata.Description}"
|
|
|
|
Grid.Row="1" x:Name="tbSubTitle"
|
|
|
|
Text="{Binding Metadata.Description}" Opacity="0.5" />
|
2014-07-16 20:17:51 +08:00
|
|
|
</Grid>
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
2014-07-16 20:17:51 +08:00
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.Resources>
|
|
|
|
</ListBox>
|
|
|
|
</DockPanel>
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid Margin="0" Grid.Column="1">
|
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<ContentControl x:Name="PluginInfoPanel" Grid.ColumnSpan="1" Grid.Row="0" Margin="10 10 10 0">
|
|
|
|
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="48" />
|
|
|
|
<ColumnDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<Image Width="48" Height="48" HorizontalAlignment="Left" VerticalAlignment="Top"
|
|
|
|
x:Name="pluginIcon" />
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid Margin="10,0,0,0" Grid.Column="1" HorizontalAlignment="Stretch">
|
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<DockPanel Grid.Row="0">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock x:Name="pluginTitle" Text="Plugin Title" Cursor="Hand"
|
|
|
|
MouseUp="PluginTitle_OnMouseUp"
|
|
|
|
ToolTip="{Binding Source=pluginTitle, Path=Text}" FontSize="24" />
|
|
|
|
<TextBlock Opacity="0.5" VerticalAlignment="Bottom" HorizontalAlignment="Right"
|
|
|
|
x:Name="pluginAuthor" Text="{DynamicResource author}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</DockPanel>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Grid.Row="1" x:Name="pluginSubTitle" Opacity="0.5"
|
2016-04-25 00:06:23 +08:00
|
|
|
ToolTip="{Binding Source=pluginSubTitle, Path=Text}"/>
|
2015-08-27 19:51:31 +08:00
|
|
|
<DockPanel Grid.Row="2" Margin="0 10 0 8">
|
2015-01-02 16:16:09 +08:00
|
|
|
<CheckBox x:Name="cbDisablePlugin" Click="CbDisablePlugin_OnClick">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource disable}" />
|
2015-01-02 16:16:09 +08:00
|
|
|
</CheckBox>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock x:Name="pluginActionKeywordsTitle" Margin="20 0 0 0"
|
|
|
|
Text="{DynamicResource actionKeywords}" />
|
|
|
|
<TextBlock Margin="5 0 0 0" ToolTip="Change Action Keywords" Cursor="Hand"
|
|
|
|
MouseUp="PluginActionKeywords_OnMouseUp" Foreground="Blue" Text="keys"
|
|
|
|
x:Name="pluginActionKeywords" />
|
2016-03-28 08:09:40 +08:00
|
|
|
<TextBlock Margin="10 0 0 0" Text="Initialize time: 0ms" x:Name="pluginInitTime" />
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Margin="10 0 0 0" Text="Query time: 0ms" x:Name="pluginQueryTime" />
|
|
|
|
<TextBlock HorizontalAlignment="Right" Cursor="Hand"
|
|
|
|
MouseUp="tbOpenPluginDirecoty_MouseUp" Foreground="Blue"
|
|
|
|
Text="{DynamicResource pluginDirectory}" x:Name="tbOpenPluginDirecoty" />
|
2014-07-14 23:18:57 +08:00
|
|
|
</DockPanel>
|
2014-06-01 23:23:48 +08:00
|
|
|
</Grid>
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
|
|
|
</ContentControl>
|
2014-03-29 16:17:01 +08:00
|
|
|
|
2016-03-26 12:46:39 +08:00
|
|
|
<ContentControl x:Name="PluginContentPanel" Grid.ColumnSpan="1" Grid.Row="1" Margin="0"
|
|
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</TabItem>
|
2015-09-26 04:43:09 +08:00
|
|
|
<TabItem Header="{DynamicResource theme}" x:Name="tabTheme">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="200" />
|
|
|
|
<ColumnDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<DockPanel Grid.Column="0">
|
|
|
|
<TextBlock DockPanel.Dock="Top" Margin="10" HorizontalAlignment="Left" Cursor="Hand"
|
|
|
|
MouseUp="tbMoreThemes_MouseUp" x:Name="tbMoreThemes" Foreground="Blue"
|
|
|
|
Text="{DynamicResource browserMoreThemes}" />
|
|
|
|
<ListBox x:Name="themeComboBox" Margin="10, 0, 10, 10"
|
|
|
|
SelectionChanged="ThemeComboBox_OnSelectionChanged" HorizontalAlignment="Stretch"
|
|
|
|
VerticalAlignment="Stretch" Width="180" />
|
2014-07-16 20:17:51 +08:00
|
|
|
</DockPanel>
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid Margin="0" Grid.Column="1">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition />
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition Height="100" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
2014-07-17 18:42:11 +08:00
|
|
|
<StackPanel x:Name="PreviewPanel" Grid.Row="0" Margin="0">
|
2016-03-26 12:46:39 +08:00
|
|
|
<StackPanel x:Name="PreviewMainPanel" Orientation="Horizontal" Margin="10"
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Center">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Border Width="500" Style="{DynamicResource WindowBorderStyle}">
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="50" />
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBox Text="{DynamicResource helloWox}" IsReadOnly="True"
|
|
|
|
Style="{DynamicResource QueryBoxStyle}" Grid.Row="0" />
|
|
|
|
<wox:ResultListBox Grid.Row="1" x:Name="ResultListBoxPreview" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
2014-03-26 17:34:19 +08:00
|
|
|
|
2014-07-17 18:42:11 +08:00
|
|
|
<StackPanel Grid.Row="1" Margin="0 10 0 10" Orientation="Vertical">
|
2014-07-04 15:12:22 +08:00
|
|
|
<StackPanel Orientation="Horizontal" Margin="2">
|
2015-01-02 16:16:09 +08:00
|
|
|
<TextBlock Text="{DynamicResource queryBoxFont}" />
|
2016-03-26 12:46:39 +08:00
|
|
|
<ComboBox Margin="10 -2 5 0" x:Name="cbQueryBoxFont"
|
|
|
|
ItemsSource="{x:Static Fonts.SystemFontFamilies}"
|
|
|
|
SelectionChanged="CbQueryBoxFont_OnSelectionChanged" HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Top" Width="160" />
|
2014-07-11 03:07:44 +08:00
|
|
|
<ComboBox Margin="0 -2 0 0"
|
2016-03-26 12:46:39 +08:00
|
|
|
x:Name="cbQueryBoxFontFaces"
|
|
|
|
ItemsSource="{Binding SelectedValue.FamilyTypefaces, ElementName=cbQueryBoxFont}"
|
|
|
|
SelectionChanged="CbQueryBoxFontFaces_OnSelectionChanged"
|
|
|
|
HorizontalAlignment="Left" VerticalAlignment="Top" Width="120">
|
2014-07-04 15:12:22 +08:00
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ItemsControl ItemsSource="{Binding AdjustedFaceNames}">
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="{Binding Value}" />
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
</DataTemplate>
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
</ComboBox>
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="2">
|
2015-01-02 16:16:09 +08:00
|
|
|
<TextBlock Text="{DynamicResource resultItemFont}" />
|
2016-03-26 12:46:39 +08:00
|
|
|
<ComboBox Margin="5 -2 5 0" x:Name="ResultFontComboBox"
|
|
|
|
ItemsSource="{x:Static Fonts.SystemFontFamilies}"
|
|
|
|
SelectionChanged="OnResultFontSelectionChanged" HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Top" Width="160" />
|
2014-07-11 03:07:44 +08:00
|
|
|
<ComboBox Margin="0 -2 0 0"
|
2016-03-26 12:46:39 +08:00
|
|
|
x:Name="ResultFontFacesComboBox"
|
|
|
|
ItemsSource="{Binding SelectedValue.FamilyTypefaces, ElementName=ResultFontComboBox}"
|
|
|
|
SelectionChanged="OnResultFontFacesSelectionChanged" HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Top" Width="120">
|
2014-07-04 15:12:22 +08:00
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ItemsControl ItemsSource="{Binding AdjustedFaceNames}">
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="{Binding Value}" />
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
</DataTemplate>
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
</ComboBox>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
2014-07-17 19:20:00 +08:00
|
|
|
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</TabItem>
|
2015-09-26 04:43:09 +08:00
|
|
|
<TabItem Header="{DynamicResource hotkey}" x:Name="tabHotkey">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid Margin="10">
|
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition Height="30" />
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition Height="50" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center">
|
|
|
|
<TextBlock VerticalAlignment="Center" Margin="0 0 10 0" Text="{DynamicResource woxHotkey}" />
|
|
|
|
<wox:HotkeyControl x:Name="ctlHotkey" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</StackPanel>
|
2016-03-26 12:46:39 +08:00
|
|
|
<Grid Grid.Row="1">
|
2014-07-04 15:12:22 +08:00
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition Height="20" />
|
|
|
|
<RowDefinition />
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock VerticalAlignment="Center" Grid.Row="0" Margin="0 0 10 0"
|
|
|
|
Text="{DynamicResource customQueryHotkey}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
<ListView x:Name="lvCustomHotkey" Margin="0 5 0 0" Grid.Row="1">
|
|
|
|
<ListView.View>
|
|
|
|
<GridView>
|
2016-03-26 12:46:39 +08:00
|
|
|
<GridViewColumn Header="{DynamicResource hotkey}" Width="180">
|
2014-07-04 15:12:22 +08:00
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{Binding Hotkey}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
2015-11-13 04:36:32 +08:00
|
|
|
<GridViewColumn Header="{DynamicResource actionKeywords}" Width="500">
|
2014-07-04 15:12:22 +08:00
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{Binding ActionKeywords}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
|
|
|
</GridView>
|
|
|
|
</ListView.View>
|
|
|
|
</ListView>
|
2014-03-28 22:42:28 +08:00
|
|
|
|
2014-07-04 15:12:22 +08:00
|
|
|
</Grid>
|
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Right" Orientation="Horizontal">
|
2016-03-26 12:46:39 +08:00
|
|
|
<Button x:Name="btnDeleteCustomHotkey" Click="BtnDeleteCustomHotkey_OnClick" Width="100"
|
|
|
|
Margin="10" Content="{DynamicResource delete}" />
|
|
|
|
<Button x:Name="btnEditCustomHotkey" Click="BtnEditCustomHotkey_OnClick" Width="100" Margin="10"
|
|
|
|
Content="{DynamicResource edit}" />
|
|
|
|
<Button x:Name="btnAddCustomeHotkey" Click="BtnAddCustomeHotkey_OnClick" Width="100" Margin="10"
|
|
|
|
Content="{DynamicResource add}" />
|
2014-07-04 15:12:22 +08:00
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</TabItem>
|
2016-05-05 08:57:03 +08:00
|
|
|
<TabItem Header="{DynamicResource proxy}" Height="22" VerticalAlignment="Top">
|
2014-07-17 19:20:00 +08:00
|
|
|
<StackPanel>
|
2016-03-11 09:31:21 +08:00
|
|
|
<CheckBox x:Name="ToggleProxy" Margin="10" Checked="ProxyToggled" Unchecked="ProxyToggled">
|
|
|
|
<TextBlock Text="{DynamicResource enableProxy}"/>
|
2015-01-02 16:16:09 +08:00
|
|
|
</CheckBox>
|
2016-03-11 09:31:21 +08:00
|
|
|
<Grid Margin="10" IsEnabled="{Binding IsChecked, ElementName=ToggleProxy}">
|
2014-07-17 19:20:00 +08:00
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="80" />
|
|
|
|
<ColumnDefinition Width="220" />
|
|
|
|
<ColumnDefinition Width="80" />
|
|
|
|
<ColumnDefinition />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Grid.Row="0" Grid.Column="0" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource server}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="0" Grid.Column="1" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBox Width="200" HorizontalAlignment="Left" x:Name="tbProxyServer" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="0" Grid.Column="2" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource port}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="0" Grid.Column="3" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBox Width="50" HorizontalAlignment="Left" x:Name="tbProxyPort" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" Grid.Column="0" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource userName}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBox Width="200" HorizontalAlignment="Left" x:Name="tbProxyUserName" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" Grid.Column="2" Padding="5">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Text="{DynamicResource password}" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
<Border Grid.Row="1" Grid.Column="3" Padding="5">
|
2014-07-18 20:00:55 +08:00
|
|
|
<PasswordBox Width="200" HorizontalAlignment="Left" x:Name="tbProxyPassword" />
|
2014-07-17 19:20:00 +08:00
|
|
|
</Border>
|
|
|
|
</Grid>
|
2016-03-11 09:31:21 +08:00
|
|
|
<StackPanel Orientation="Horizontal" IsEnabled="{Binding IsChecked, ElementName=ToggleProxy}">
|
|
|
|
<Button x:Name="btnTestProxy" Width="80" HorizontalAlignment="Left" Margin="10" Click="btnTestProxy_Click" Content="{DynamicResource testProxy}"/>
|
|
|
|
<Button x:Name="btnSaveProxy" Width="80" HorizontalAlignment="Left" Margin="10" Click="btnSaveProxy_Click" Content="{DynamicResource save}"/>
|
2014-07-18 20:00:55 +08:00
|
|
|
</StackPanel>
|
2014-07-17 19:20:00 +08:00
|
|
|
</StackPanel>
|
|
|
|
</TabItem>
|
2015-01-02 16:16:09 +08:00
|
|
|
<TabItem Header="{DynamicResource about}">
|
2014-12-16 22:25:22 +08:00
|
|
|
<Grid>
|
2016-03-11 09:13:47 +08:00
|
|
|
<Grid.Resources>
|
|
|
|
<Style TargetType="{x:Type TextBlock}">
|
|
|
|
<Setter Property="Margin" Value="10, 10, 0, 0" />
|
|
|
|
</Style>
|
|
|
|
</Grid.Resources>
|
2014-12-16 22:25:22 +08:00
|
|
|
<Grid.ColumnDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<ColumnDefinition Width="80" />
|
|
|
|
<ColumnDefinition />
|
2014-12-16 22:25:22 +08:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
2016-03-26 12:46:39 +08:00
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
2014-12-16 22:25:22 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="0" Text="{DynamicResource website}" />
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="0" HorizontalAlignment="Left" Cursor="Hand"
|
|
|
|
MouseUp="tbWebsite_MouseUp" x:Name="tbWebsite" Foreground="Blue"
|
|
|
|
Text="http://www.getwox.com" />
|
2014-12-16 22:25:22 +08:00
|
|
|
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="1" Text="{DynamicResource version}" />
|
2014-12-16 22:25:22 +08:00
|
|
|
<StackPanel Grid.Column="1" Grid.Row="1" Orientation="Horizontal">
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock HorizontalAlignment="Left" x:Name="tbVersion" Text="1.0.0" />
|
2014-12-16 22:25:22 +08:00
|
|
|
</StackPanel>
|
2015-07-17 15:08:39 +08:00
|
|
|
|
2016-03-26 12:46:39 +08:00
|
|
|
<TextBlock x:Name="tbActivatedTimes" Grid.Row="2" Grid.ColumnSpan="2"
|
|
|
|
Text="{DynamicResource about_activate_times}" />
|
2014-12-16 22:25:22 +08:00
|
|
|
</Grid>
|
|
|
|
</TabItem>
|
2014-07-04 15:12:22 +08:00
|
|
|
</TabControl>
|
2016-03-26 12:46:39 +08:00
|
|
|
</Window>
|