PgCustomSections.xaml 1.3 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<Page x:Class="FLY.Thick.Base.UI.PgCustomSections"
      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:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
      mc:Ignorable="d" 
      d:DesignHeight="800" d:DesignWidth="1024"
	Title="PgCustomSections">
    <Page.Resources>
        <ResourceDictionary>
        </ResourceDictionary>
    </Page.Resources>
14
    <Grid Background="{StaticResource Brushes.ThemeBackground}" >
潘栩锋's avatar
潘栩锋 committed
15 16 17 18
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition Height="496*" />
        </Grid.RowDefinitions>
19
        <StackPanel Orientation="Horizontal"  Background="{StaticResource Brushes.TitleBar.Background}" >
潘栩锋's avatar
潘栩锋 committed
20
            <Button Style="{StaticResource Styles.TitleBar.BackButton2}" Command="BrowseBack"/>
21
            <TextBlock Style="{StaticResource Styles.TitleBar.Text}" Text="{StaticResource str.PgCustomSections.Title}"/>
潘栩锋's avatar
潘栩锋 committed
22 23 24 25 26 27 28
        </StackPanel>
        <ScrollViewer PanningMode="Both" Grid.Row="1" >
            <StackPanel x:Name="spSections">
            </StackPanel>
        </ScrollViewer>
    </Grid>
</Page>