我有一张照片(曲目)像这样 -
你可以看到的白色部分实际上是透明的。我想根据它的进展填充颜色(指示器),像这样 -
但问题是,每当我在Blend中设置图像(Track)时," Progress Color" (指标)实际上掩盖了它的边界(轨道) -
为方便起见,我附上了代码 -
<Window x:Class="WpfApplication3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<ProgressBar Value="50" Height="50" Width="450" Foreground="Red" BorderThickness="10" Background="{x:Null}">
<ProgressBar.BorderBrush>
<ImageBrush ImageSource="MOyml.png" Stretch="UniformToFill"/>
</ProgressBar.BorderBrush>
</ProgressBar>
</Window>
有没有解决方案?