RoleWindow.axaml 1.0 KB

12345678910111213141516171819
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" Height="150" Width="150"
  6. x:Class="FirstSlice.RoleWindow"
  7. WindowStartupLocation="CenterOwner"
  8. Title="RoleWindow">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition></RowDefinition>
  12. <RowDefinition></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <TextBox Grid.Row="0" Name="TextRole" Watermark="Роль" VerticalAlignment="Center" Margin="10"/>
  15. <Button Grid.Row="1" Name="SaveRole" Content="Сохранить роль" Click="OnSaveRoleClick" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10"></Button>
  16. </Grid>
  17. </Window>