1234567891011121314151617181920212223242526272829 |
- <Page x:Class="WPF01.pages.MainPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:WPF01.pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="MainPage" Background="White">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="42*"/>
- <RowDefinition Height="107*"/>
- <RowDefinition Height="14*"/>
- <RowDefinition Height="112*"/>
- <RowDefinition Height="146*"/>
- <RowDefinition Height="29*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="36*"/>
- <ColumnDefinition Width="146*"/>
- <ColumnDefinition Width="386*"/>
- <ColumnDefinition Width="199*"/>
- <ColumnDefinition Width="33*"/>
- </Grid.ColumnDefinitions>
- </Grid>
- </Page>
|