| 1234567891011121314151617 |
- <Window x:Class="FillingColumn.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:FillingColumn"
- mc:Ignorable="d"
- Title="{Binding ElementName=MainFrame, Path=Content.Title}" Height="450" Width="800" WindowStartupLocation="CenterScreen">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Button x:Name="BtnBack" Visibility="Collapsed" Content="Назад" HorizontalAlignment="Right" VerticalAlignment="Center" Click="BtnBack_Click" Width="80" Height="30" Margin="0,0,20,0"></Button>
- <Frame x:Name="MainFrame" Grid.Row="1" NavigationUIVisibility="Hidden" ContentRendered="MainFrame_ContentRendered"></Frame>
- </Grid>
- </Window>
|