他の WPF コントロールで使用する WPF コントロールの 3D 効果を与える必要があります。
<UserControl>
<ScrollViewer>
<Border BorderThickness="0">
<Border.Effect>
<DropShadowEffect Color="Black"
ShadowDepth="3"
Direction="270" />
</Border.Effect>
<my:MyChildWpfControl x:Name="myControl"/>
</Border>
</ScrollViewer>
</UserControl>
Border 子ノードを使用せずに、に直接入れる方法はありますか? デコレータと装飾者について何か...それを行う最も簡単な方法は何ですか?myControl
ScrollViewer