RoutedUICommand Class
Defines an ICommand that is routed through the element tree and contains a text property.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
'Declaration <TypeConverterAttribute("System.Windows.Input.CommandConverter, PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")> _ Public Class RoutedUICommand _ Inherits RoutedCommand 'Usage Dim instance As RoutedUICommand
<RoutedUICommand .../>
<object property="predefinedCommandName"/> - or - <object property="predefinedClassName.predefinedCommandName"/> - or - <object property="{x:Static customClassName.customCommandName}"/>
XAML Values
The difference between a RoutedUICommand and RoutedCommand is that RoutedUICommand includes a Text property.
The Execute and CanExecute methods on a RoutedCommand do not contain the command logic for the command, as is the case with a typical ICommand. These methods raise events that traverse the element tree looking for an object with a CommandBinding. The event handlers attached to the CommandBinding contain the command logic.
The Execute method raises the PreviewExecuted and Executed events. The CanExecute method raises the PreviewCanExecute and CanExecute events.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.