mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<views:MvxWindow x:Class="ProxySuper.WPF.Views.BrookInstallerView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
|
|
xmlns:local="clr-namespace:ProxySuper.WPF.Views"
|
|
Icon="/Resources/ProxySU.ico"
|
|
mc:Ignorable="d"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="Brook" Height="450" Width="800">
|
|
<StackPanel>
|
|
<TextBox IsReadOnly="True"
|
|
Block.LineHeight="18"
|
|
Background="#000"
|
|
Foreground="LawnGreen"
|
|
FontSize="14"
|
|
FontFamily="Consolas"
|
|
x:Name="OutputTextBox"
|
|
Height="260"
|
|
Padding="10"
|
|
BorderThickness="0"
|
|
VerticalAlignment="Top"
|
|
VerticalContentAlignment="Top"
|
|
TextWrapping="WrapWithOverflow"
|
|
/>
|
|
|
|
<StackPanel Margin="5" Orientation="Horizontal">
|
|
<Label Content="{DynamicResource Install}" />
|
|
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="Install" Content="{DynamicResource XrayInstallerInstall}" />
|
|
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="Uninstall" Content="{DynamicResource XrayInstallerUninstall}" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</views:MvxWindow>
|