Version

ExecutedCommandEvent Field (XamDockManager)

Event ID for the ExecutedCommand routed event
Syntax
'Declaration
 
Public Shared ReadOnly ExecutedCommandEvent As RoutedEvent
public static readonly RoutedEvent ExecutedCommandEvent
Example
Imports Infragistics.Windows.DockManager
Imports Infragistics.Windows.DockManager.Events

Private Sub XamDockManager_ExecutedCommand(ByVal sender As Object, ByVal e As ExecutedCommandEventArgs)
    ' display the name of the command executed 
    System.Diagnostics.Debug.WriteLine(e.Command.OwnerType.Name + "." + e.Command.Name)
End Sub
using Infragistics.Windows.DockManager;
using Infragistics.Windows.DockManager.Events;

private void XamDockManager_ExecutedCommand(object sender, ExecutedCommandEventArgs e)
{
	// display the name of the command executed
	System.Diagnostics.Debug.WriteLine(e.Command.OwnerType.Name + "." + e.Command.Name);
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also