//File:Window.xaml.vb Imports System Imports System.Windows Imports System.Windows.Controls Imports System.Windows.Media Imports System.Windows.Input Namespace WpfApplication1 Public Partial Class Window1 Inherits Window Public Shared ColorCmd As New RoutedCommand() Public Sub New() InitializeComponent() End Sub Private Sub ColorCmdExecuted(sender As Object, e As ExecutedRoutedEventArgs) Dim target As Panel = TryCast(e.Source, Panel) If target IsNot Nothing Then If target.Background Is Brushes.AliceBlue Then target.Background = Brushes.Red Else target.Background = Brushes.AliceBlue End If End If End Sub Private Sub ColorCmdCanExecute(sender As Object, e As CanExecuteRoutedEventArgs) If TypeOf e.Source Is Panel Then e.CanExecute = True Else e.CanExecute = False End If End Sub End Class End Namespace