Files
HawkeyeVision/VisionBuilder.UI.Avalonia.Uno/Views/MainWindow.axaml
EugeneTes 4bd117af47 plugin system docs
custom buttons for plugins
calibration functions for Leeform
2026-03-30 16:15:47 +02:00

55 lines
2.2 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="using:VisionBuilder.UI.Avalonia.Uno.Views"
x:Class="VisionBuilder.UI.Avalonia.Uno.Views.MainWindow"
Title="VisionBuilder UNO"
Width="1920" Height="1080"
WindowStartupLocation="CenterScreen"
Background="#FFFFFF">
<Grid RowDefinitions="*,1,Auto">
<!-- Main camera view -->
<views:SingleCameraView x:Name="SingleCameraView" Grid.Row="0" />
<!-- Divider -->
<Border Grid.Row="1" Background="#D32F2F" />
<!-- Bottom bar -->
<Grid Grid.Row="2" Height="70" Background="White">
<StackPanel x:Name="BottomBarPanel" Orientation="Horizontal"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Spacing="8">
<Button x:Name="BtnMinimize"
Content="MINIMIZE"
Width="176" Height="48"
FontSize="14" FontWeight="Bold"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
BorderBrush="#D32F2F"
BorderThickness="2"
Background="White"
Foreground="#D32F2F" />
<Button x:Name="BtnExit"
Content="EXIT"
Width="176" Height="48"
FontSize="14" FontWeight="Bold"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
BorderBrush="#D32F2F"
BorderThickness="2"
Background="White"
Foreground="#D32F2F" />
</StackPanel>
<TextBlock x:Name="LblVersion"
Text="v0.0.0"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Margin="0,0,8,4"
FontSize="12"
Foreground="#888888" />
</Grid>
</Grid>
</Window>