1
我正在使用來自wpftoolkit庫的忙碌指示燈。這是我的代碼:透明忙碌指示燈
<Window x:Class="BusyControl.MainWindow"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:gif="http://wpfanimatedgif.codeplex.com"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<xctk:BusyIndicator Name="ProgressIndicator" IsBusy="False" Background="Transparent" BorderBrush="Transparent" BorderThickness="0">
<xctk:BusyIndicator.BusyContentTemplate>
<DataTemplate>
<StackPanel>
<Image gif:ImageBehavior.AnimatedSource="Resources/loading.gif" Width="150" Height="50" />
<TextBlock Text="{Binding ElementName=ProgressIndicator, Path=BusyContent}" HorizontalAlignment="Center" Margin="3"></TextBlock>
</StackPanel>
</DataTemplate>
</xctk:BusyIndicator.BusyContentTemplate>
<xctk:BusyIndicator.ProgressBarStyle>
<Style TargetType="ProgressBar">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</xctk:BusyIndicator.ProgressBarStyle>
<Grid>
<Button Content="Click me" Click="ButtonBase_OnClick" Width="100" Height="50"></Button>
</Grid>
</xctk:BusyIndicator>
</Grid>
</Window>
但我的忙指示燈看起來像
,但我需要透明的忙指示這樣
我怎麼能這樣做?
第一個問題是某些灰色被背景的顏色所掩蓋。第一張照片中沒有任何內容表明它不是透明的。 – BugFinder
在wpftoolkit庫的源代碼中,我看到ContentPresenter的父元素是一個灰色背景的邊框。有什麼方法可以改變這個邊界的背景,除了源代碼更改嗎? – user2455111
好的,我在這篇文章中發現瞭解決方案[there](http://stackoverflow.com/questions/18984371/silvelight-busyindicator-background-color-for-the-message-box)。我可以使用我自己的風格 – user2455111