0
我想通過WindowsFormHost對象託管的控件上放置一個圓角邊框。看起來不管我爲OpacityMask設置了什麼,它對渲染都沒有影響。有什麼我錯過了嗎?OpacityMask不能與WPF WindowsFormsHost一起使用?
這是我使用的XAML代碼。子控件在運行時添加。我嘗試過各種口罩組合,其中沒有一種適合我。任何幫助,將不勝感激。謝謝!
<WindowsFormsHost Background="#FF2BBA62" Height="414" Width="516" Margin="176.5,223,309.5,92" Name="vcxHost1" UseLayoutRounding="False" ClipToBounds="True" >
<WindowsFormsHost.OpacityMask>
<VisualBrush>
<VisualBrush.Visual>
<Rectangle Height="10" Width="100" Name="border1" />
</VisualBrush.Visual>
</VisualBrush>
</WindowsFormsHost.OpacityMask>
</WindowsFormsHost>