Reputation: 997
Right now if I click Button A, Button B shows a DropShadow effect:
Private Sub ButtonA_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles ButtonA.Click
Dim objDropShadow As New DropShadowEffect
objDropShadow.ShadowDepth = 0
objDropShadow.BlurRadius = 30
objDropShadow.Color = Colors.GreenYellow
Me.ButtonB.Effect = objDropShadow
End Sub
If I clicked Button C how would I remove the DropShadow effect from Button B ?
Upvotes: 2
Views: 3871
Reputation: 7429
Try it
Me.ButtonB.Effect = Nothing // VB.Net
this.ButtonB.Effect = null; // C#
Upvotes: 4
Reputation: 20036
Private Sub ButtonC_Click(
ByVal sender As System.Object,
ByVal e As System.Windows.RoutedEventArgs) Handles ButtonC.Click
Dim objDropShadow As New DropShadowEffect
objDropShadow.ShadowDepth = 0
objDropShadow.BlurRadius = 0
objDropShadow.Color = Colors.Transparent
Me.ButtonB.Effect = objDropShadow
End Sub
Upvotes: 2