MainWindow.xaml 1.4 KB

1234567891011121314151617181920212223
  1. <Window x:Class="OpenAndSaveDialogFile.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:OpenAndSaveDialogFile"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded">
  9. <Border>
  10. <Border Background="LightGray" CornerRadius="20" Margin="10">
  11. <Grid>
  12. <StackPanel Margin="20" HorizontalAlignment="Center" VerticalAlignment="Top">
  13. <TextBox x:Name="QuestionOutput" Background="White" Height="200" Width="700" TextWrapping="Wrap" FontSize="20" IsReadOnly="True"/>
  14. <TextBox x:Name="AnswerInput" Margin="0,30,0,0" FontSize="20" Height="40"/>
  15. </StackPanel>
  16. <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center" Margin="0,0,0,40">
  17. <Button Click="btnSave_Click" Height="40" Width="200" Content="Сохранить результат" Margin="5"/>
  18. <Button Click="btnNext_Click" Height="40" Width="200" Content="Далее" Margin="5"/>
  19. </StackPanel>
  20. </Grid>
  21. </Border>
  22. </Border>
  23. </Window>