mirror of
https://github.com/proxysu/ProxySU.git
synced 2025-02-18 07:23:17 +03:00
13 lines
635 B
XML
13 lines
635 B
XML
<local:MvxMetroWindow x:Class="ProxySuper.WPF.Views.SecondView"
|
|
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"
|
|
mc:Ignorable="d" Height="450" Width="800">
|
|
<Grid>
|
|
<TextBlock Text="{Binding Message}" />
|
|
<Button Command="{Binding BackCommand}" Width="40" Height="20">后退</Button>
|
|
</Grid>
|
|
</local:MvxMetroWindow>
|