12345678910111213141516171819202122232425 |
- <Window x:Class="KursachMukha692gr.CatTrenerUpdate"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- xmlns:local="clr-namespace:KursachMukha692gr"
- mc:Ignorable="d"
- Title="Изменение тренерской категории тренера" Height="400" Width="450" WindowStartupLocation="CenterScreen" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
- <Grid Background="#028E9B">
- <Grid.RowDefinitions>
- <RowDefinition Height="77*"/>
- <RowDefinition Height="493*"/>
- </Grid.RowDefinitions>
- <Border MinWidth="400" MaxWidth="400" Margin="15,32,15,31" Background="#35C0CD" VerticalAlignment="Center" Padding="30" Grid.RowSpan="2">
- <StackPanel>
- <TextBlock Text="Изменение категории тренера" FontSize="19" Margin="0 0 0 20" HorizontalAlignment="Center"/>
- <TextBox x:Name ="id_turik" materialDesign:HintAssist.Hint="Введите код тренера" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
- <TextBox x:Name ="Name" materialDesign:HintAssist.Hint="Введите новую категорию тренера" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
- <Button Content="Применить изменения" Margin="0 20" Background="#006363" Click="Button_Click_Up" />
- <Button Content="Назад" Background="#006363" Click="Button_Click_Back" RenderTransformOrigin="0.496,0.453" Height="31"/>
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|