-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputBox.xaml
19 lines (19 loc) · 1.11 KB
/
InputBox.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Window x:Class="Pixiv_Nginx_GUI.InputBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Loaded="Window_Loaded"
Title="Input Box" SizeToContent="WidthAndHeight" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock x:Name="TipText" Text="请输入值:" Grid.Row="0" Margin="10,0,10,10" VerticalAlignment="Top" FontFamily="{StaticResource AaManYuShouXieTi}" FontSize="16"/>
<TextBox Name="InputTextBox" Grid.Row="1" Margin="10,0,10,10" VerticalAlignment="Center"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Grid.Row="2" Margin="0,0,10,0">
<Button Content="确定" Width="75" Margin="0,0,10,0" Click="OkButton_Click"/>
<Button Content="取消" Width="75" Click="CancelButton_Click"/>
</StackPanel>
</Grid>
</Window>