2015-01-03 15:20:34 +08:00
|
|
|
<Window x:Class="Wox.Plugin.Program.ProgramSuffixes"
|
2014-08-13 23:16:45 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
mc:Ignorable="d"
|
2014-08-14 19:45:48 +08:00
|
|
|
Width="400"
|
2015-01-06 23:24:11 +08:00
|
|
|
Height="180"
|
2014-08-14 19:45:48 +08:00
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
d:DesignHeight="400" d:DesignWidth="300">
|
|
|
|
<StackPanel>
|
2016-08-20 06:24:21 +08:00
|
|
|
<TextBlock Margin="10 10 0 0" Foreground="Gray" Text="{DynamicResource wox_plugin_program_only_index_tip}" />
|
|
|
|
<TextBlock Margin="10 10 0 0" Foreground="Gray" Text="{DynamicResource wox_plugin_program_split_by_tip}" />
|
2014-08-14 19:45:48 +08:00
|
|
|
<TextBox x:Name="tbSuffixes" Margin="10"/>
|
2016-08-20 06:24:21 +08:00
|
|
|
<Button HorizontalAlignment="Right" Height="30" Width="80" Click="ButtonBase_OnClick" Margin="10" Content="{DynamicResource wox_plugin_program_update}" />
|
2014-08-14 19:45:48 +08:00
|
|
|
</StackPanel>
|
2014-08-13 23:16:45 +08:00
|
|
|
</Window>
|
2016-08-20 06:24:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|