1234567891011121314151617181920212223 |
- <Window x:Class="veloprokat2.DeleteRab"
- 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:local="clr-namespace:veloprokat2"
- mc:Ignorable="d"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- Title="Удаление записи о сотруднике" WindowState="Maximized" Icon="mountain_bike_sport_icon_123970.ico">
- <Grid Background="#EAF4F4">
- <Border MinWidth="400" Margin="15" Background="#FFFF" VerticalAlignment="Center" Padding="30" MaxWidth="600" CornerRadius="20">
- <Border.Effect>
- <DropShadowEffect BlurRadius="30" Color="LightGray" ShadowDepth="0"/>
- </Border.Effect>
- <StackPanel>
- <TextBlock Text="Удаление записи о сотруднике" FontSize="20" FontWeight="Bold" Margin="0 0 20 0"/>
- <TextBox Name="NumberOfRab" materialDesign:HintAssist.Hint="Введите номер сотрудника" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
- <Button Content="Удалить" Margin="20 10" Click="Delete"/>
- <Button Content="Отмена" Margin="20 0" Click="Otmena"/>
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|