DeleteRaspisaniye.xaml 1.7 KB

123456789101112131415161718192021222324
  1. <Window x:Class="KursachMukha692gr.DeleteRaspisaniye"
  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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  7. xmlns:local="clr-namespace:KursachMukha692gr"
  8. mc:Ignorable="d"
  9. Title="Удаление занятия" Height="350" Width="450" WindowStartupLocation="CenterScreen" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
  10. <Grid Background="#028E9B">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="77*"/>
  13. <RowDefinition Height="493*"/>
  14. </Grid.RowDefinitions>
  15. <Border MinWidth="400" MaxWidth="400" Margin="15,32,15,31" Background="#35C0CD" VerticalAlignment="Center" Padding="30" Grid.RowSpan="2">
  16. <StackPanel>
  17. <TextBlock Text="Удаление занятия" FontSize="20" Margin="0 0 0 20" HorizontalAlignment="Center"/>
  18. <TextBox x:Name ="id_raspisaniye" materialDesign:HintAssist.Hint="Введите id занятия" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
  19. <Button Content="Удалить занятие" Margin="0 20" Background="#006363" Click="Button_Click_Delete" />
  20. <Button Content="Назад" Background="#006363" Click="Button_Click_Back" RenderTransformOrigin="0.496,0.453" Height="31"/>
  21. </StackPanel>
  22. </Border>
  23. </Grid>
  24. </Window>