/
anasteishabalandina
/
GeometryShapes
Обзор
Документация
Войти
/
anasteishabalandina
/
GeometryShapes
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Lab5/LoadingWindow.axaml
57 строк
2 KB
Anastaisha8
lab_5
16 дек 2025, 02:12
16 дек 2025, 02:12
ed2837c
Код
Авторство
О чём код?
<Window x:Class="Lab5.ProgressWindow" xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:lp="clr-namespace:Lab5" x:DataType="lp:ProgressWindowViewModel" Width="460" Height="230" MinWidth="400" MinHeight="210" CanResize="False" WindowStartupLocation="CenterOwner" Padding="18" Background="{DynamicResource ThemeBackgroundBrush}"> <Border BorderBrush="{DynamicResource ThemeBorderLowBrush}" BorderThickness="1" CornerRadius="6" Padding="14"> <StackPanel Spacing="10"> <StackPanel Spacing="4"> <TextBlock FontSize="18" FontWeight="SemiBold" Text="{Binding Title}" /> <TextBlock FontSize="14" Foreground="{DynamicResource ThemeForegroundLowBrush}" Text="{Binding Caption}" /> <TextBlock FontSize="13" Foreground="{DynamicResource ThemeForegroundBrush}" Text="{Binding Subtitle}" /> </StackPanel> <StackPanel Spacing="6"> <ProgressBar Height="20" Maximum="{Binding MaxProgress}" Value="{Binding ProgressValue}" /> <TextBlock HorizontalAlignment="Center" FontSize="12" Foreground="{DynamicResource ThemeForegroundLowBrush}" Text="{Binding ElapsedText}" /> </StackPanel> <StackPanel HorizontalAlignment="Right" Orientation="Horizontal"> <Button MinWidth="110" Command="{Binding ActionButtonCommand}" Content="{Binding ButtonText}" IsEnabled="{Binding IsActionEnabled}" /> </StackPanel> </StackPanel> </Border> </Window>