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" >
|
2025-02-11 13:17:16 +00:00
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
|
2025-02-05 10:11:36 +00:00
|
|
|
<Image Source="{Binding Image}" Width="100" Height="100" Margin="5" HorizontalAlignment="Center"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</StackPanel>
|
2025-02-11 13:17:16 +00:00
|
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
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>
|
2025-02-11 13:17:16 +00:00
|
|
|
<Button Content="Назад" Click="Back_Button" Margin="5"/>
|
|
|
|
<Button Content="Создать заказ" Click="Next_Function_Button" Margin="5"/>
|
2025-02-12 11:54:49 +00:00
|
|
|
<Button Content="История входа" Click="History_Button" Margin="5"/>
|
|
|
|
<TextBlock x:Name="SessionTimer" FontSize="16" Foreground="Red" HorizontalAlignment="Center" Margin="10"/>
|
|
|
|
<TextBlock Text="" HorizontalAlignment="Center" Margin="10" x:Name="WarningBlock"/>
|
2025-02-04 12:27:32 +00:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
</DockPanel>
|
2025-02-05 10:11:36 +00:00
|
|
|
</Window>
|