windChangePriority.xaml 1.1 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="DemoTest_Boldin_41P.windChangePriority"
  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:DemoTest_Boldin_41P"
  7. mc:Ignorable="d"
  8. Title="windChangePriority" Height="400" Width="500">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="7*"/>
  12. <ColumnDefinition Width="59*"/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="50*"/>
  16. <RowDefinition Height="369*"/>
  17. </Grid.RowDefinitions>
  18. <TextBlock Text="Приятный шелест" Grid.Row="0" Grid.Column="1" FontSize="40"></TextBlock>
  19. <StackPanel Grid.Row="1" Grid.Column="1">
  20. <TextBox Width="200px" Height="40px" Name="tbPrior"></TextBox>
  21. <Button Content="Поменять" Click="Button_Click"></Button>
  22. </StackPanel>
  23. </Grid>
  24. </Window>