MainWindow.xaml 1.2 KB

1234567891011121314151617181920212223
  1. <Window x:Class="Exam19.MainWindow"
  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:Exam19"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="75"/>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="30"/>
  14. </Grid.RowDefinitions>
  15. <Grid Grid.Row="0" Background="#fde2e4"></Grid>
  16. <Grid Grid.Row="2" Background="#fde2e4"></Grid>
  17. <TextBlock Text="{Binding ElementName=FrameMain, Path=Content.Title}"></TextBlock>
  18. <TextBlock Height="50" HorizontalAlignment="Center" FontSize="30" Text="Зарплата"></TextBlock>
  19. <Frame x:Name="FrameMain" NavigationUIVisibility="Hidden" Grid.Row="1"></Frame>
  20. <Button Content="Назад" HorizontalAlignment="Right" Name="BtnBack" Click="BtnBack_Click" Margin="643,22,0,21"
  21. Width="147" Height="NaN" Background="#b8c0ff" FontSize="20"></Button>
  22. </Grid>
  23. </Window>