30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
<UserControl x:Class="DM_Weight.Views.TestCheckBox"
 | 
						|
             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:DM_Weight.Views"
 | 
						|
             mc:Ignorable="d" 
 | 
						|
             d:DesignHeight="450" d:DesignWidth="800">
 | 
						|
    <Border BorderBrush="Orange" BorderThickness="3" CornerRadius="6" Background="Yellow">
 | 
						|
        <Grid>
 | 
						|
            <Grid.RowDefinitions>
 | 
						|
                <RowDefinition Height="Auto"/>
 | 
						|
                <RowDefinition Height="*"/>
 | 
						|
                <RowDefinition Height="Auto"/>
 | 
						|
            </Grid.RowDefinitions>
 | 
						|
            <Border BorderBrush="Orange" BorderThickness="1" CornerRadius="1" Padding="4">
 | 
						|
                <StackPanel>
 | 
						|
                    <StackPanel Orientation="Horizontal">
 | 
						|
                        <StackPanel.Effect>
 | 
						|
                            <DropShadowEffect Color="LightGray"/>
 | 
						|
                        </StackPanel.Effect>
 | 
						|
                        <TextBlock Text="欢迎光临" FontSize="60" FontFamily="LiShu"/>
 | 
						|
                        <CheckBox Command="{Binding cbxCommand}"></CheckBox>
 | 
						|
                    </StackPanel>
 | 
						|
                </StackPanel>
 | 
						|
            </Border>
 | 
						|
        </Grid>
 | 
						|
    </Border>
 | 
						|
</UserControl>
 |