TextInputDialog.xaml 992 B

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