2024-11-01 08:48:42 +01:00

22 lines
958 B
XML

<Window x:Class="DevconBoothImages.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:DevconBoothImages"
mc:Ignorable="d"
Title="DevconBoothImages" Height="450" Width="800" WindowState="Maximized">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Image Grid.Row="0" Name="Img" />
<StackPanel Grid.Row="1">
<Button Content="Generate image -> Upload to Codex -> Put CID info in clipboard" Padding="10"/>
<Button Content="Put last CID info in clipboard" Padding="10"/>
</StackPanel>
</Grid>
</Window>