В WPF, как я могу реализовать ICommandSource, чтобы дать возможность пользовательского управления использовать команду из xaml? - PullRequest
10 голосов
/ 17 августа 2010

Не могли бы вы предоставить пример того, как вы реализуете интерфейс ICommandSource. Как я хочу, чтобы моя UserControl, которая не имеет возможности указать команду в xaml, имела эту возможность. И чтобы иметь возможность обрабатывать команду, когда пользователь нажимает на CustomControl.

Ответы [ 2 ]

22 голосов
/ 17 августа 2010

Вот пример:

public partial class MyUserControl : UserControl, ICommandSource
{
    public MyUserControl()
    {
        InitializeComponent();
    }



    public ICommand Command
    {
        get { return (ICommand)GetValue(CommandProperty); }
        set { SetValue(CommandProperty, value); }
    }

    public static readonly DependencyProperty CommandProperty =
        DependencyProperty.Register("Command", typeof(ICommand), typeof(MyUserControl), new UIPropertyMetadata(null));


    public object CommandParameter
    {
        get { return (object)GetValue(CommandParameterProperty); }
        set { SetValue(CommandParameterProperty, value); }
    }

    // Using a DependencyProperty as the backing store for CommandParameter.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty CommandParameterProperty =
        DependencyProperty.Register("CommandParameter", typeof(object), typeof(MyUserControl), new UIPropertyMetadata(null));

    public IInputElement CommandTarget
    {
        get { return (IInputElement)GetValue(CommandTargetProperty); }
        set { SetValue(CommandTargetProperty, value); }
    }

    // Using a DependencyProperty as the backing store for CommandTarget.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty CommandTargetProperty =
        DependencyProperty.Register("CommandTarget", typeof(IInputElement), typeof(MyUserControl), new UIPropertyMetadata(null));


    protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
    {
        base.OnMouseLeftButtonUp(e);

        var command = Command;
        var parameter = CommandParameter;
        var target = CommandTarget;

        var routedCmd = command as RoutedCommand;
        if (routedCmd != null && routedCmd.CanExecute(parameter, target))
        {
            routedCmd.Execute(parameter, target);
        }
        else if (command != null && command.CanExecute(parameter))
        {
            command.Execute(parameter);
        }
    }

}

Обратите внимание, что свойство CommandTarget используется только для RoutedCommands

0 голосов
/ 17 августа 2010

Ваш UserControl будет иметь код за файлом cs или vb, вы должны реализовать интерфейс ICommandSource, и, как только вы его реализуете, в некоторых случаях вам придется фактически вызвать команду и также проверить CanExecute.

...