/
GeoExe
/
RoutePlanning_Task
Обзор
Документация
Войти
/
GeoExe
/
RoutePlanning_Task
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
UI/MainWindow.axaml
29 строк
1 KB
GeoExe
Added Test and UI files
25 ноя 2025, 20:40
25 ноя 2025, 20:40
ca8595d
Код
Авторство
О чём код?
<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="RoutePlanning.UI.MainWindow" Title="Mazes"> <Grid ColumnDefinitions="33*,66*"> <Border Grid.Column="0" Grid.Row="0" BorderBrush="Black" BorderThickness="2" Padding="4"> <ListBox Name="Tests"> </ListBox> </Border> <Grid Grid.Column="1" RowDefinitions="70*,30*"> <Border Grid.Row="0" BorderBrush="Black" BorderThickness="0,2,2,2" Background="#7fffd4" > <Viewbox Stretch="Uniform"> <Canvas Name="TestView" Width="400" Height="400"> </Canvas> </Viewbox> </Border> <Border Grid.Row="1" BorderBrush="Black" BorderThickness="0,0,2,2" Padding="8"> <TextBlock Name="Log"></TextBlock> </Border> </Grid> </Grid> </Window>