<Application x:Class="ZGR.Databoard.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ZGR.Databoard"
StartupUri="MainWindow.xaml">
<Application.Resources>
<!-- 定义字体-->
<FontFamily x:Key="Iconfont">Assets/Fonts/iconfont.ttf#iconfont</FontFamily>
<Style TargetType="GroupBox" x:Key="GroupBoxStyle">
<Setter Property="Margin" Value="10"></Setter>
<Setter Property="Template" >
<Setter.Value>
<ControlTemplate TargetType="GroupBox" >
<Border BorderBrush="#ddd" BorderThickness="1" CornerRadius="5" Background="#DDFBFAFD" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="45"></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBlock FontWeight="Bold" Foreground="#11135A" FontSize="14" Margin="20,0" HorizontalAlignment="Left" VerticalAlignment="Center" Text="{TemplateBinding Header}">
<TextBlock.Effect>
<DropShadowEffect Direction="270" ShadowDepth="8" BlurRadius="20" Color="#5766F6" Opacity="0.3"></DropShadowEffect>
</TextBlock.Effect>
<Border Height="2" Background="#DDD" VerticalAlignment="Bottom" ></Border>
</TextBlock>
<ContentPresenter Grid.RowSpan="2"></C
wpf 自定义控件-groupbox
于 2024-08-22 15:03:23 首次发布