mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-26 07:06:08 +03:00
14 lines
723 B
XML
14 lines
723 B
XML
<views:MvxWpfView x:Class="ProxySuper.WPF.Views.MainView"
|
|
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"
|
|
xmlns:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
|
|
mc:Ignorable="d" Height="450" Width="800">
|
|
<Grid>
|
|
<TextBlock Text="{Binding Count}" />
|
|
<Button Command="{Binding PlusCommand}" Width="40" Height="20">+</Button>
|
|
</Grid>
|
|
</views:MvxWpfView>
|