WindowAdmin.xaml 909 B

1234567891011121314151617181920
  1. <Window x:Class="School.WindowAdmin"
  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:local="clr-namespace:School"
  7. mc:Ignorable="d"
  8. d:MinHeight="140" d:MinWidth="220"
  9. MaxHeight="140" MaxWidth="220"
  10. Title="Код администратора" Icon="/image/school_logo.ico" >
  11. <Grid>
  12. <StackPanel Background="#E7FABF">
  13. <GroupBox Header="Введите код">
  14. <TextBox Name="admincode"></TextBox>
  15. </GroupBox>
  16. <Button Name="Add" Template="{StaticResource ButtonInElement}" Click="Add_Click">Сохранить</Button>
  17. </StackPanel>
  18. </Grid>
  19. </Window>