Поделиться через


Практическое руководство. Создание маршрутизируемой команды RoutedCommand

В этом примере показано, как создать пользовательскую маршрутизируемую команду RoutedCommand и способ реализации пользовательской команды путем создания ExecutedRoutedEventHandler и CanExecuteRoutedEventHandler и присоединения их к CommandBinding. Дополнительные сведения о работе с командами см. в разделе Общие сведения о системе команд.

Пример

Первым шагом для создания маршрутизируемой команды RoutedCommand является определение команды и создание ее экземпляра.

        Public Shared CustomRoutedCommand As New RoutedCommand()
public static RoutedCommand CustomRoutedCommand = new RoutedCommand();

Чтобы использовать команды в приложении, не нужно создавать обработчики событий, которые определяют эти команды.

        Private Sub ExecutedCustomCommand(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
            MessageBox.Show("Custom Command Executed")
        End Sub
private void ExecutedCustomCommand(object sender,
    ExecutedRoutedEventArgs e)
{
    MessageBox.Show("Custom Command Executed");
}
        ' CanExecuteRoutedEventHandler that only returns true if
        ' the source is a control.
        Private Sub CanExecuteCustomCommand(ByVal sender As Object, ByVal e As CanExecuteRoutedEventArgs)
            Dim target As Control = TryCast(e.Source, Control)

            If target IsNot Nothing Then
                e.CanExecute = True
            Else
                e.CanExecute = False
            End If
        End Sub
// CanExecuteRoutedEventHandler that only returns true if
// the source is a control.
private void CanExecuteCustomCommand(object sender, 
    CanExecuteRoutedEventArgs e)
{
    Control target = e.Source as Control;

    if(target != null)
    {
        e.CanExecute = true;
    }
    else
    {
        e.CanExecute = false;
    }
}

Далее создается CommandBinding, который связывает команду с обработчиками событий. Создается CommandBinding на определенном объекте. Этот объект определяет область CommandBinding в дереве элементов

<Window x:Class="SDKSamples.Window1"
    xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:custom="clr-namespace:SDKSamples"
    Height="600" Width="800"
    >
  <Window.CommandBindings>
    <CommandBinding Command="{x:Static custom:Window1.CustomRoutedCommand}"
                    Executed="ExecutedCustomCommand"
                    CanExecute="CanExecuteCustomCommand" />
  </Window.CommandBindings>
            Dim customCommandBinding As New CommandBinding(CustomRoutedCommand, AddressOf ExecutedCustomCommand, AddressOf CanExecuteCustomCommand)

            ' attach CommandBinding to root window
            Me.CommandBindings.Add(customCommandBinding)
CommandBinding customCommandBinding = new CommandBinding(
    CustomRoutedCommand, ExecutedCustomCommand, CanExecuteCustomCommand);

// attach CommandBinding to root window
this.CommandBindings.Add(customCommandBinding);

Последним шагом является вызов команды. Одним из способов вызова команды является связывание ее с ICommandSource, например Button.

<StackPanel>
  <Button Command="{x:Static custom:Window1.CustomRoutedCommand}"
          Content="CustomRoutedCommand"/>
</StackPanel>
            ' create the ui
            Dim CustomCommandStackPanel As New StackPanel()
            Dim CustomCommandButton As New Button()
            CustomCommandStackPanel.Children.Add(CustomCommandButton)

            CustomCommandButton.Command = CustomRoutedCommand
// create the ui
StackPanel CustomCommandStackPanel = new StackPanel();
Button CustomCommandButton = new Button();
CustomCommandStackPanel.Children.Add(CustomCommandButton);

CustomCommandButton.Command = CustomRoutedCommand;

При нажатии кнопки вызывается метод Execute для пользовательской маршрутизируемой команде RoutedCommand. RoutedCommand создает маршрутизируемые события PreviewExecuted и Executed. Эти события проходят по дереву элементов в поисках CommandBinding для этой конкретной команды. Если найден CommandBinding, то вызывается обработчик ExecutedRoutedEventHandler, связанный с CommandBinding.

См. также

Ссылки

RoutedCommand

Основные понятия

Общие сведения о системе команд