我在 scatterview 项目上覆盖了一个图像。scatterview 项目包含堆栈面板和一些文本块。在覆盖主窗口的背景并将其设置为透明时,我仍然可以看到与图像不能很好地融合的角落。
我正在使用 surfaceusercontrol 在 scatterview 中添加表面项目。代码如下:
<s:SurfaceUserControl x:Class="Models.ModelItemControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://schemas.microsoft.com/surface/2008" Width="110" Background="Transparent">
<Grid>
<Grid.Background>
<ImageBrush ImageSource="pack://application:,,,/Resources/models_card_150-01.png" Opacity="1.0" Stretch="Fill" />
</Grid.Background>
<Viewbox >
<StackPanel MaxWidth="250" MinHeight="300">
<TextBlock Name="ItemTitle" Margin="5,5,5,5" TextWrapping="Wrap" Visibility="Visible" Padding="2" />
<Image Name="ItemImage" Margin="5,5,5,5" Visibility="Visible" MaxHeight="100"/>
<TextBlock Name="ItemDesc" Margin="5,5,5,0" TextWrapping="Wrap" Visibility="Visible" Padding="2" />
<s:SurfaceToggleButton Checked="ItemInfo_Checked" Unchecked="ItemInfo_Unchecked" Margin="5,0,5,0" HorizontalAlignment="Center" VerticalAlignment="Center">Display more info</s:SurfaceToggleButton>
</StackPanel>
</Viewbox>
</Grid>
</s:SurfaceUserControl>
我想要一种将角剪成圆形而不是矩形的方法。