presence/Presence.Desktop/Views/PresenceView.axaml

21 lines
913 B
Plaintext
Raw Normal View History

2024-12-18 08:42:44 +00:00
<UserControl xmlns="https://github.com/avaloniaui"
2024-12-19 07:27:17 +00:00
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:vm="using:Presence.Desktop.ViewModels"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Presence.Desktop.Views.PresenceView"
x:DataType="vm:PresenceViewModel">
2024-12-18 07:19:58 +00:00
2024-12-19 07:27:17 +00:00
<DockPanel Background="White">
<!-- Верхняя панель с DataGrid -->
<DataGrid Margin="10" ItemsSource="{Binding People}"
HorizontalAlignment="Center"
AutoGenerateColumns="True" IsReadOnly="True"
GridLinesVisibility="All"
BorderThickness="1" BorderBrush="Gray">
</DataGrid>
</DockPanel>
</UserControl>