グループボックスのフェードを背景の上にほとんど透明にし、ほぼ白い背景を下にする方法を理解できません。グループボックスのグラデーションの背景
私はこの1つのようなスタイルで背景を設定したい:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--Groups and borders-->
<Style x:Key="MainGroupBox" TargetType="{x:Type GroupBox}">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="SnapsToDevicePixels" Value="True" />
</Style>
私はあなたが私を助けることができると思います。
PS:私はWPF 4
は、この記事を見て:http://stackoverflow.com/questions/520190/in-xaml-style-how-to-change-solid-background-to-gradient – Filip