PriorityChanger.xaml 740 B

12345678910111213141516
  1. <Window x:Class="PracticaDemoexam.Windows.PriorityChanger"
  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:PracticaDemoexam.Windows"
  7. mc:Ignorable="d"
  8. Title="PriorityChanger">
  9. <Grid>
  10. <StackPanel>
  11. <Label Content="Текущий приоритет"/>
  12. <TextBox x:Name="tbPrior"/>
  13. <Button Content="Сохранить приоритеты" Click="Button_Click"/>
  14. </StackPanel>
  15. </Grid>
  16. </Window>