presence/Presence.Desktop/Views/PresenceView.axaml

15 lines
967 B
Plaintext
Raw Permalink Normal View History

2024-12-04 19:33:12 +00:00
<UserControl xmlns="https://github.com/avaloniaui"
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"
2024-12-23 15:12:32 +00:00
xmlns:vm="clr-namespace:Presence.Desktop.ViewModels"
2024-12-04 19:33:12 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
2024-12-23 15:12:32 +00:00
x:Class="Presence.Desktop.Views.PresenceView"
x:DataType="vm:PresenceViewModel">
<DockPanel>
<Button Content="Назад" Command="{Binding GoBackCommand}" Foreground="Black" DockPanel.Dock="Top" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10" />
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="10">
<TextBlock Text="Welcome to Avalonia!" HorizontalAlignment="Center" VerticalAlignment="Center" />
</StackPanel>
</DockPanel>
</UserControl>