2020-04-21 09:12:17 +00:00
|
|
|
<UserControl x:Class="Flow.Launcher.Plugin.BrowserBookmark.Views.SettingsControl"
|
2019-11-10 21:00:31 +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"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Background="White"
|
|
|
|
|
d:DesignHeight="300" d:DesignWidth="500">
|
2020-04-29 10:37:07 +00:00
|
|
|
<Grid>
|
2019-11-10 21:00:31 +00:00
|
|
|
<Grid.RowDefinitions>
|
2020-04-29 10:37:07 +00:00
|
|
|
<RowDefinition Height="90" />
|
2019-11-10 21:00:31 +00:00
|
|
|
<RowDefinition />
|
|
|
|
|
</Grid.RowDefinitions>
|
2020-04-29 10:37:07 +00:00
|
|
|
<StackPanel>
|
|
|
|
|
<Grid Grid.Row="0" Margin="40 40 0 0">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="160" />
|
|
|
|
|
<ColumnDefinition Width="140"/>
|
|
|
|
|
<ColumnDefinition Width="100"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2020-05-14 09:56:11 +00:00
|
|
|
<Label Grid.Column="0" Content="{DynamicResource flowlauncher_plugin_browserbookmark_settings_openBookmarks}"
|
|
|
|
|
FontSize="15" Margin="0 5 0 0"/>
|
|
|
|
|
<RadioButton Grid.Column="1" Name="NewWindowBrowser" GroupName="OpenSearchBehaviour"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_browserbookmark_settings_newWindow}"
|
|
|
|
|
Click="OnNewBrowserWindowClick" />
|
|
|
|
|
<RadioButton Grid.Column="2" Name="NewTabInBrowser" GroupName="OpenSearchBehaviour"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_browserbookmark_settings_newTab}"
|
|
|
|
|
Click="OnNewTabClick" />
|
2020-04-29 10:37:07 +00:00
|
|
|
</Grid>
|
2019-11-11 10:17:37 +00:00
|
|
|
</StackPanel>
|
2019-11-11 11:29:15 +00:00
|
|
|
<StackPanel VerticalAlignment="Top" Grid.Row="1" Height="106" Margin="41,13,0,0">
|
2020-05-14 10:05:57 +00:00
|
|
|
<Label Content="{DynamicResource flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath}"
|
|
|
|
|
Height="28" Margin="0,0,155,0" HorizontalAlignment="Left" Width="290"/>
|
2020-07-17 02:32:08 +00:00
|
|
|
<TextBox x:Name="browserPathBox" HorizontalAlignment="Left" Height="34" TextWrapping="NoWrap" VerticalAlignment="Top" Width="311" RenderTransformOrigin="0.502,-1.668" TextChanged="OnBrowserPathTextChanged" />
|
2020-05-14 10:05:57 +00:00
|
|
|
<Button x:Name="viewButton" Content="{DynamicResource flowlauncher_plugin_browserbookmark_settings_choose}"
|
|
|
|
|
HorizontalAlignment="Left" Margin="340,-35,-1,0" Width="100" Height="34" Click="OnChooseClick" FontSize="14" />
|
2019-11-11 10:17:37 +00:00
|
|
|
</StackPanel>
|
2019-11-10 21:00:31 +00:00
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|