2020-04-21 09:12:17 +00:00
|
|
|
<Window x:Class="Flow.Launcher.Plugin.Program.AddProgramSource"
|
2015-04-21 00:32:10 +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"
|
2016-08-20 16:08:16 +00:00
|
|
|
Width="400"
|
|
|
|
|
Height="120"
|
|
|
|
|
WindowStartupLocation="CenterScreen">
|
2015-05-02 14:17:42 +00:00
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2020-04-21 12:54:41 +00:00
|
|
|
<Label Content="{DynamicResource flowlauncher_plugin_program_directory}"/>
|
2016-08-20 16:08:16 +00:00
|
|
|
<TextBox Name="Directory" VerticalAlignment="Center" Width="300" Margin="0,7" />
|
2015-04-21 00:32:10 +00:00
|
|
|
</StackPanel>
|
2016-08-20 16:08:16 +00:00
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
2020-04-21 12:54:41 +00:00
|
|
|
<Button Click="BrowseButton_Click" Content="{DynamicResource flowlauncher_plugin_program_browse}"
|
2016-08-20 16:08:16 +00:00
|
|
|
HorizontalAlignment="Right" Margin="10" Height="20" Width="70" />
|
2020-04-21 12:54:41 +00:00
|
|
|
<Button Click="ButtonAdd_OnClick" Content="{DynamicResource flowlauncher_plugin_program_update}"
|
2016-08-20 16:08:16 +00:00
|
|
|
HorizontalAlignment="Right" Margin="10" Height="20" Width="70" />
|
2015-04-21 00:32:10 +00:00
|
|
|
</StackPanel>
|
2015-05-02 14:17:42 +00:00
|
|
|
</StackPanel>
|
2015-04-21 00:32:10 +00:00
|
|
|
</Window>
|