1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.WPF/Views/XrayEditorView.xaml

22 lines
912 B
Plaintext
Raw Normal View History

2021-05-14 14:07:19 +03:00
<views:MvxWindow x:Class="ProxySuper.WPF.Views.XrayEditorView"
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"
xmlns:ctrl="clr-namespace:ProxySuper.WPF.Controls"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
Title="XrayEditorView" Height="600" Width="1000">
<Grid>
<GroupBox Header="Host" Margin="10" Padding="10">
<StackPanel>
<ctrl:HostControl />
</StackPanel>
</GroupBox>
</Grid>
</views:MvxWindow>