-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPluginSettings.xaml
23 lines (23 loc) · 1.33 KB
/
PluginSettings.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<UserControl x:Class="Flow.Launcher.Plugin.WinSCP.PluginSettings"
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.WinSCP"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Loaded="UserControl_Loaded">
<Grid Margin="10,10,10,15" VerticalAlignment="Top">
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Content="{DynamicResource flowlauncher_plugin_winscp_settings_winSCPExePath}" VerticalAlignment="Center" Margin="0,0,20,0"/>
<TextBox Grid.Column="1" Name="SettingsWinSCPExecutablePath" TextWrapping="NoWrap" IsReadOnly="True"/>
<Button Grid.Column="2" Name="SettingsOpenWinSCPPath" Width="50" Content="..." Click="SettingsOpenWinSCPPath_Click"/>
</Grid>
</UserControl>