| 1234567891011121314151617181920212223 |
- <Window x:Class="TeamAAS_VP.Views.Dialogs.TextInputDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="AAS" SizeToContent="WidthAndHeight"
- WindowStartupLocation="CenterOwner"
- ResizeMode="NoResize"
- MinWidth="320">
- <Grid Margin="12">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <TextBlock Text="输入文字:" Margin="0,0,0,6"/>
- <TextBox x:Name="InputBox" Grid.Row="1" MinWidth="280" Margin="0,0,0,10"/>
- <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
- <Button Content="确定" Width="80" Margin="0,0,8,0" Click="Ok_Click"/>
- <Button Content="取消" Width="80" Click="Cancel_Click"/>
- </StackPanel>
- </Grid>
- </Window>
|