mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
2e4a1680b9
1. Parallel linq 2. remove depth 3. fix #257
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<Window x:Class="Wox.Plugin.Program.AddProgramSource"
|
|
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"
|
|
Width="400"
|
|
Height="120"
|
|
WindowStartupLocation="CenterScreen">
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Label Content="{DynamicResource wox_plugin_program_directory}"/>
|
|
<TextBox Name="Directory" VerticalAlignment="Center" Width="300" Margin="0,7" />
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button Click="BrowseButton_Click" Content="{DynamicResource wox_plugin_program_browse}"
|
|
HorizontalAlignment="Right" Margin="10" Height="20" Width="70" />
|
|
<Button Click="ButtonAdd_OnClick" Content="{DynamicResource wox_plugin_program_update}"
|
|
HorizontalAlignment="Right" Margin="10" Height="20" Width="70" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Window>
|