2025-02-15 17:15:30 +08:00

18 lines
1.0 KiB
XML

<Window x:Class="Milimoe.FunGame.Testing.Desktop.Solutions.NovelEditor.InputDialog"
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:Milimoe.FunGame.Testing.Desktop.Solutions.NovelEditor"
mc:Ignorable="d"
Title="InputDialog" Height="150" Width="300" WindowStartupLocation="CenterScreen">
<StackPanel Margin="10">
<TextBlock x:Name="lblQuestion" Text="请输入内容:" Margin="0,0,0,5"/>
<TextBox x:Name="txtInput" Margin="0,0,0,10"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="确定" IsDefault="True" Click="Button_Click" Width="70" Margin="0,0,5,0"/>
<Button Content="取消" IsCancel="True" Width="70"/>
</StackPanel>
</StackPanel>
</Window>