dmeo040225/AdminWindow.axaml
2025-02-04 16:58:34 +03:00

18 lines
789 B
XML

<Window 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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="dmeo040225.AdminWindow"
Title="AdminWindow">
<Border Background="Bisque">
<DockPanel>
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Top">
<Image x:Name="Image" Width="150" Height="150"/>
<TextBlock x:Name="FioName" Foreground="Black"/>
<TextBlock x:Name="RoleName" Foreground="Black"/>
</StackPanel>
</DockPanel>
</Border>
</Window>