-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSettingsView.xaml
More file actions
32 lines (28 loc) · 1.56 KB
/
Copy pathSettingsView.xaml
File metadata and controls
32 lines (28 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<UserControl x:Class="Flow.Launcher.Plugin.ShareX_Flow_Plugin.SettingsView"
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"
xmlns:local="clr-namespace:Flow.Launcher.Plugin.ShareX_Flow_Plugin"
mc:Ignorable="d"
d:DesignHeight="450"
d:DesignWidth="800">
<StackPanel Margin="{DynamicResource SettingPanelMargin}" >
<Grid Margin="{DynamicResource SettingPanelItemTopBottomMargin}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" VerticalAlignment="Center" Text="ShareX installation path:" Margin="{DynamicResource SettingPanelItemRightMargin}" />
<TextBox Grid.Column="1" Text="{Binding SharexPath, Mode=TwoWay}" IsReadOnly="False" Margin="{DynamicResource SettingPanelItemRightMargin}"/>
<Button Grid.Column="2" HorizontalAlignment="Center" Content="{DynamicResource flowlauncher_plugin_url_plugin_choose}" Click="BrowseSharexPath" />
</Grid>
<CheckBox
Margin="{DynamicResource SettingPanelItemTopBottomMargin}"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="Close ShareX after successfully completing some tasks"
IsChecked="{Binding AutoClose, Mode=TwoWay}" />
</StackPanel>
</UserControl>