mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
|
<views:MvxWindow x:Class="ProxySuper.WPF.Views.Brook.BrookInstallView"
|
||
|
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:local="clr-namespace:ProxySuper.WPF.Views.Brook"
|
||
|
xmlns:ctrl="clr-namespace:ProxySuper.WPF.Controls"
|
||
|
xmlns:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
|
||
|
mc:Ignorable="d"
|
||
|
WindowStartupLocation="CenterScreen"
|
||
|
Title="TrojanGoInstallView" Height="600" Width="1000">
|
||
|
<StackPanel>
|
||
|
<ctrl:ProgressControl />
|
||
|
|
||
|
<StackPanel Orientation="Horizontal" Margin="20,0,0,0">
|
||
|
<Label Content="{DynamicResource Install}" FontWeight="Bold" FontSize="14" />
|
||
|
|
||
|
<Button Content="{DynamicResource XrayInstallerInstall}"
|
||
|
Command="{Binding Path=InstallCommand}"
|
||
|
Padding="10,3"
|
||
|
Margin="10,0,0,0" />
|
||
|
|
||
|
<Button Content="{DynamicResource XrayInstallerUninstall}"
|
||
|
Command="{Binding Path=UninstallCommand}"
|
||
|
Padding="10,3"
|
||
|
Margin="10,0,0,0" />
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</views:MvxWindow>
|