2025-02-04 12:27:32 +00:00
|
|
|
<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="demo_hard.FunctionWindow"
|
|
|
|
x:CompileBindings="False"
|
|
|
|
Title="FunctionWindow">
|
|
|
|
<DockPanel>
|
|
|
|
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" >
|
|
|
|
<StackPanel>
|
2025-02-05 10:07:55 +00:00
|
|
|
<Image Source="{Binding Image}" Width="100" Height="100" Margin="5" HorizontalAlignment="Center"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</StackPanel>
|
|
|
|
<StackPanel>
|
2025-02-05 10:07:55 +00:00
|
|
|
<TextBlock x:Name="Fio">
|
2025-02-04 12:27:32 +00:00
|
|
|
<Run Text="ФИО:"/>
|
2025-02-05 10:07:55 +00:00
|
|
|
<Run Text="{Binding Fio}"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</TextBlock>
|
|
|
|
<TextBlock>
|
2025-02-05 10:07:55 +00:00
|
|
|
<Run Text="Роль:"/>
|
|
|
|
<Run Text="{Binding RoleId}"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</TextBlock>
|
|
|
|
</StackPanel>
|
2025-02-05 10:07:55 +00:00
|
|
|
<Button Content="Назад" Click="Back_Button"/>
|
|
|
|
<Button Content="Далее" Click="Next_Function_Button"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</StackPanel>
|
|
|
|
</DockPanel>
|
|
|
|
</Window>
|