2020-04-21 09:12:17 +00:00
|
|
|
<UserControl x:Class="Flow.Launcher.Plugin.Url.SettingsControl"
|
2018-12-25 07:11:24 +00: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"
|
2019-11-11 20:14:58 +00:00
|
|
|
mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="500">
|
2020-05-04 04:49:57 +00:00
|
|
|
<Grid Margin="40,40,10,0">
|
2018-12-25 07:11:24 +00:00
|
|
|
<Grid.RowDefinitions>
|
2019-11-11 20:14:58 +00:00
|
|
|
<RowDefinition Height="40" />
|
|
|
|
|
<RowDefinition />
|
2018-12-25 07:11:24 +00:00
|
|
|
</Grid.RowDefinitions>
|
2019-11-10 19:49:17 +00:00
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="0">
|
2021-01-23 04:24:08 +00:00
|
|
|
<Label Content="{DynamicResource flowlauncher_plugin_url_open_search_in}" Margin="0 10 15 0" />
|
2020-05-04 04:49:57 +00:00
|
|
|
<RadioButton x:Name="NewWindowBrowser" GroupName="OpenSearchBehaviour"
|
2021-01-23 04:24:08 +00:00
|
|
|
Content="{DynamicResource flowlauncher_plugin_new_window}" Click="OnNewBrowserWindowClick" />
|
2020-05-04 04:49:57 +00:00
|
|
|
<RadioButton x:Name="NewTabInBrowser" GroupName="OpenSearchBehaviour"
|
2021-01-23 04:24:08 +00:00
|
|
|
Content="{DynamicResource flowlauncher_plugin_new_tab}" Click="OnNewTabClick" />
|
2019-11-10 19:49:17 +00:00
|
|
|
</StackPanel>
|
2020-05-04 04:49:57 +00:00
|
|
|
<StackPanel VerticalAlignment="Top" Grid.Row="1" Height="106" Margin="0 20 0 0">
|
|
|
|
|
<Label Content="{DynamicResource flowlauncher_plugin_url_plugin_set_tip}" Height="28" Margin="0,0,155,0"
|
|
|
|
|
HorizontalAlignment="Left" Width="290" />
|
2020-07-16 20:12:54 +00:00
|
|
|
<TextBox x:Name="browserPathBox" HorizontalAlignment="Left" Height="34" TextWrapping="NoWrap"
|
2020-07-17 02:32:08 +00:00
|
|
|
VerticalAlignment="Top" Width="311" RenderTransformOrigin="0.502,-1.668" TextChanged="OnBrowserPathTextChanged" />
|
2020-05-04 04:49:57 +00:00
|
|
|
<Button x:Name="viewButton" HorizontalAlignment="Left" Margin="340,-33,-1,0" Width="100"
|
|
|
|
|
Height="32" Click="OnChooseClick" FontSize="14"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_url_plugin_choose}" />
|
2019-11-10 19:49:17 +00:00
|
|
|
</StackPanel>
|
2018-12-25 07:11:24 +00:00
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|