2024-10-15 21:56:09 +08:00
|
|
|
<Window x:Class="Serein.Workbench.Themes.InputDialog"
|
2024-09-22 14:10:13 +08:00
|
|
|
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"
|
2024-10-15 21:56:09 +08:00
|
|
|
xmlns:local="clr-namespace:Serein.Workbench.Themes"
|
2024-09-22 14:10:13 +08:00
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Title="InputDialog" Height="450" Width="800">
|
|
|
|
|
<StackPanel Margin="10">
|
|
|
|
|
<TextBox x:Name="InputTextBox" Width="200" Margin="0,0,0,10" />
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
|
|
|
<Button Content="确认" Click="ConfirmButton_Click" Margin="5" />
|
|
|
|
|
<Button Content="取消" Click="CancelButton_Click" Margin="5" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Window>
|