mirror of
https://github.com/ApfelTeeSaft/NESDecompiler.git
synced 2026-08-26 19:33:30 +00:00
23 lines
1.0 KiB
XML
23 lines
1.0 KiB
XML
<Window x:Class="NESDecompiler.GUI.InputDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Input" Height="150" Width="400"
|
|
WindowStartupLocation="CenterOwner"
|
|
ShowInTaskbar="False"
|
|
ResizeMode="NoResize">
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock x:Name="PromptText" Grid.Row="0" Text="Enter value:" Margin="0,0,0,10"/>
|
|
<TextBox x:Name="ResponseTextBox" Grid.Row="1" Margin="0,0,0,10"/>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button Content="OK" Width="75" Click="OKButton_Click" IsDefault="True" Margin="0,0,5,0"/>
|
|
<Button Content="Cancel" Width="75" Click="CancelButton_Click" IsCancel="True"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |