12345678910111213141516171819202122232425 |
- <Window x:Class="Hotel_Course_Project.RoleAddWindow"
- 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="https://materialdesigninxaml.net/winfx/xaml/themes"
- xmlns:local="clr-namespace:Hotel_Course_Project"
- mc:Ignorable="d"
- Title="Добавление должности" Height="150" Width="200" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
- Icon="pack://application:,,,/Resources/favicon.ico">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock HorizontalAlignment="Right" VerticalAlignment="Center">Название</TextBlock>
- <TextBox Grid.Column="1" Name="RName"></TextBox>
- <Button Grid.Row="1" IsCancel="True" Name="CancelBtn" Click="CancelBtn_Click">Отмена</Button>
- <Button Grid.Row="1" Grid.Column="1" IsDefault="True" Name="AddBtn" Click="AddBtn_Click">Добавить</Button>
- </Grid>
- </Window>
|