Добавьте файлы проекта.

This commit is contained in:
zxckawory
2026-09-03 20:49:08 +03:00
parent b76a11ae22
commit e221eda36a
35 changed files with 975 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
<NavigationPage 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="zooManagerPro.HomeView">
<Grid RowDefinitions="*,*,*,*">
<Grid Background="#32a852" ColumnDefinitions="*,*">
<TextBlock Text="ZooManagerPro" VerticalAlignment="Center" FontSize="20" FontWeight="Bold" Foreground="White" Margin="10,0,0,0"/>
<Button Grid.Column="1" HorizontalAlignment="Right" Content="Обновить" Margin="0,0,10,0"/>
</Grid>
<Grid Grid.Row="1" ColumnDefinitions="*,*,*,*" Margin="16,14,16,4">
<Border>
<StackPanel>
<TextBlock Text="Зарегистрировано животных"/>
<TextBlock Text="0" Foreground="#2980B9"/>
</StackPanel>
</Border>
<Border Grid.Column="1">
<StackPanel>
<TextBlock Text="Количество видов"/>
<TextBlock Text="0" Foreground="#27AE60"/>
</StackPanel>
</Border>
<Border Grid.Column="2">
<StackPanel>
<TextBlock Text="Свободные вольеры"/>
<TextBlock Text="0" Foreground="#E67E22"/>
</StackPanel>
</Border>
<Border Grid.Column="3">
<StackPanel>
<TextBlock Text="Осмотр у ветеринара (7 дней)"/>
<TextBlock Text="0" Foreground="#E74C3C"/>
</StackPanel>
</Border>
</Grid>
</Grid>
</NavigationPage>