You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
<Window x:Class="PageSample.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:PageSample"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="400" Width="250">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="btnPage1" Grid.Column="0" Content="Page1" Margin="3"
|
|
Click="btnPage1_Click"/>
|
|
<Button x:Name="btnPage2" Grid.Column="1" Content="Page2" Margin="3"
|
|
Click="btnPage2_Click"/>
|
|
</Grid>
|
|
|
|
<Frame x:Name="frmMain" Grid.Row="1"
|
|
NavigationUIVisibility="Hidden"/>
|
|
</Grid>
|
|
</Window>
|
|
|