IdZalUpdateRaspisaniye.xaml 1.9 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="KursachMukha692gr.IdZalUpdateRaspisaniye"
  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="Изменение id зала" Height="400" 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="Изменение id зала занятия" FontSize="20" Margin="0 0 0 20" HorizontalAlignment="Center"/>
  18. <TextBox x:Name ="id_turik" materialDesign:HintAssist.Hint="Введите id занятия" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
  19. <TextBox x:Name ="Name" materialDesign:HintAssist.Hint="Введите новое id зала занятия" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
  20. <Button Content="Применить изменения" Margin="0 20" Background="#006363" Click="Button_Click_Up" />
  21. <Button Content="Назад" Background="#006363" Click="Button_Click_Back" RenderTransformOrigin="0.496,0.453" Height="31"/>
  22. </StackPanel>
  23. </Border>
  24. </Grid>
  25. </Window>