時,WPF按鈕閃爍爲白色我剛剛創建了wpf按鈕,當我單擊按鈕時,它會變成白色,如閃爍,並在釋放按鈕時變回原來的顏色。可能是什麼問題呢?我沒有使用任何效果。以下是我的按鈕xaml。請指教。當我點擊
<Button Content="ROM" Height="121" HorizontalAlignment="Left" Margin="91,269,0,0" Name="button1" VerticalAlignment="Top" Width="566" FontSize="48" BorderBrush="#FF3DFF00" BorderThickness="10" Foreground="White">
<Button.BitmapEffect>
<DropShadowBitmapEffect ShadowDepth="2" Color="Gray"></DropShadowBitmapEffect>
</Button.BitmapEffect>
<Button.Background>
<RadialGradientBrush>
<GradientStop Color="#FF4094D8" Offset="0" />
<GradientStop Color="#FF2B476F" Offset="1" />
</RadialGradientBrush>
</Button.Background>
</Button>
我已經發布了我的xaml代碼,但在我的問題中看不到。 – TNA 2011-02-15 08:41:56
您必須將其格式化爲代碼,使用編輯器欄中的按鈕 – 2011-02-15 08:42:22