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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							2.0 KiB
						
					
					
				<UserControl x:Class="Kingo.PlatformPlugin.View.DefaultDockView" | 
						|
             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:Kingo.PlatformPlugin.View" | 
						|
             xmlns:kui="clr-namespace:KUI;assembly=KUI" | 
						|
             xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
             mc:Ignorable="d"  | 
						|
             d:DesignHeight="450" d:DesignWidth="800"> | 
						|
    <Grid> | 
						|
        <Grid.RowDefinitions> | 
						|
            <RowDefinition /> | 
						|
            <RowDefinition Height="auto" /> | 
						|
        </Grid.RowDefinitions> | 
						|
        <Grid x:Name="ContentPanel"> | 
						|
 | 
						|
        </Grid> | 
						|
        <Grid x:Name="btnPanel" Grid.Row="1"  Height="45" HorizontalAlignment="Stretch"> | 
						|
            <Grid.ColumnDefinitions> | 
						|
                <ColumnDefinition Width="100" /> | 
						|
                <ColumnDefinition /> | 
						|
                <ColumnDefinition Width="100" /> | 
						|
            </Grid.ColumnDefinitions> | 
						|
            <btn:KImgButton Name="btnPrev" FIcon="" BorderThickness="1" Grid.Column="0"  Width="80" Height="30" Content="上一个" Margin="0,0,0,0" Click="btnPrev_Click" /> | 
						|
            <!--<StackPanel Orientation="Horizontal" Grid.Column="1" HorizontalAlignment="Center"> | 
						|
                <kui:KFontIconButton Name="btnSave" FIcon="" BorderThickness="1" Grid.Column="0"  Width="80" Height="25" Content="保存" Margin="10,0,0,0" Click="btnSave_Click" /> | 
						|
                --><!--<CheckBox Name="checkBoxAutoSave" Content="自动保存" IsChecked="True" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="0" Margin="10,0,0,0"/>--><!-- | 
						|
            </StackPanel>--> | 
						|
            <btn:KImgButton FIcon="" Grid.Column="2" VerticalAlignment="Center" Width="80" Height="30" Name="btnNext" Content="下一个" Margin="0,0,0,0" Click="btnNext_Click"/> | 
						|
        </Grid> | 
						|
    </Grid> | 
						|
</UserControl>
 | 
						|
 |