UcSectionControllerState.xaml 1.15 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<UserControl x:Class="FLY.Thick.Base.UI.CustomSection.UcSectionControllerState"
             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:FLY.Thick.Base.UI.CustomSection"
             xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
             mc:Ignorable="d" d:DesignWidth="800">
    <UserControl.Resources>
        <ResourceDictionary>
        </ResourceDictionary>
    </UserControl.Resources>
    <StackPanel Orientation="Horizontal" >
潘栩锋's avatar
潘栩锋 committed
14
        <Border Style="{StaticResource Styles.ParamSection.Border}">
15
            <TextBlock Text="{StaticResource str.PgCustomSections.AutoChangedPage}" />
潘栩锋's avatar
潘栩锋 committed
16 17 18 19 20 21 22
        </Border>
        <TabControl x:Name="tabControl" Visibility="Collapsed"
                                Controls:TabControlHelper.Underlined="TabPanel"
                                TabStripPlacement="Left">
        </TabControl>
    </StackPanel>
</UserControl>