ChangedPrior.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Window x:Class="ShabaninDemoEkz.ChangedPrior"
  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:ShabaninDemoEkz"
  7. mc:Ignorable="d"
  8. MaxHeight="400"
  9. MaxWidth="400"
  10. MinHeight="400"
  11. MinWidth="400"
  12. Icon="Resurses/Приятный шелест.ico"
  13. Title="Изменение приоритета" Height="400" Width="400">
  14. <Grid>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="55"/>
  17. <ColumnDefinition Width="*"/>
  18. </Grid.ColumnDefinitions>
  19. <Grid.RowDefinitions>
  20. <RowDefinition Height="75"/>
  21. <RowDefinition Height="*"></RowDefinition>
  22. </Grid.RowDefinitions>
  23. <DockPanel Grid.ColumnSpan="2">
  24. <Image Source="Resurses/Приятный шелест.png"/>
  25. <TextBlock Text="Приятный шелест" FontSize="38"/>
  26. </DockPanel>
  27. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.ColumnSpan="2" Grid.Row="1">
  28. <GroupBox Header="Новый приоритет">
  29. <TextBox x:Name="priorTxt" />
  30. </GroupBox>
  31. <Button x:Name="SaveP" Click="SaveP_Click">Сохранить</Button>
  32. </StackPanel>
  33. </Grid>
  34. </Window>