Files
SimpleRayTracing/managed/SimpleRayTracer/MainWindow.xaml
Misaki f1d3dddb9a Change project structure;
Added new c# binding;
2025-12-30 20:54:05 +09:00

32 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="SimpleRayTracer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SimpleRayTracer"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="SimpleRayTracer">
<Window.SystemBackdrop>
<MicaBackdrop />
</Window.SystemBackdrop>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Spacing="12" Margin="12">
<Button x:Name="RunSmokeTestButton" Content="Run Interop Smoke Test" Click="RunSmokeTestButton_Click" />
<TextBlock x:Name="StatusText" VerticalAlignment="Center" />
</StackPanel>
<ScrollViewer Grid.Row="1" Margin="12">
<Image x:Name="RenderImage" Stretch="Uniform" />
</ScrollViewer>
</Grid>
</Window>