Обработчик событий XAML в нерутом объекте - PullRequest
0 голосов
/ 09 марта 2019

Представьте себе следующий XAML:

<Page
    x:Class="MyProject.MainPage"
    xmlns:local="using:MyProject">

   <local:MyStackPanel>
       <Button Content="Go" Click="OnGo"/>
   </local:MyStackPanel>
</Page>

XAML предполагает, что OnGo является методом в классе страницы.Могу ли я как-то сказать декларативно , что OnGo находится вместо MyStackPanel?

Я знаю, что могу назначить обработчик события программно после загрузки страницы.Мне интересно, возможно ли это чисто средствами XAML.«Нет» - приемлемый ответ:)

1 Ответ

1 голос
/ 11 марта 2019

По вашему требованию вы можете связать MyStackPanel DataContext с собой.Затем создайте BtnClickCommand, который использовался для связывания команды кнопки в классе MyStackPanel, как показано ниже.

public class MyStackPanel : StackPanel
{
    public MyStackPanel()
    {

    }

    public ICommand BtnClickCommand
    {
        get
        {
            return new RelayCommand(() =>
            {


            });
        }
    }

}
public class RelayCommand : ICommand
{
    private readonly Action _execute;
    private readonly Func<bool> _canExecute;
    /// <summary>
    /// Raised when RaiseCanExecuteChanged is called.
    /// </summary>
    public event EventHandler CanExecuteChanged;
    /// <summary>
    /// Creates a new command that can always execute.
    /// </summary>
    /// <param name="execute">The execution logic.</param>
    public RelayCommand(Action execute)
        : this(execute, null)
    {
    }
    /// <summary>
    /// Creates a new command.
    /// </summary>
    /// <param name="execute">The execution logic.</param>
    /// <param name="canExecute">The execution status logic.</param>
    public RelayCommand(Action execute, Func<bool> canExecute)
    {
        if (execute == null)
            throw new ArgumentNullException("execute");
        _execute = execute;
        _canExecute = canExecute;
    }
    /// <summary>
    /// Determines whether this RelayCommand can execute in its current state.
    /// </summary>
    /// <param name="parameter">
    /// Data used by the command. If the command does not require data to be passed,
    /// this object can be set to null.
    /// </param>
    /// <returns>true if this command can be executed; otherwise, false.</returns>
    public bool CanExecute(object parameter)
    {
        return _canExecute == null ? true : _canExecute();
    }
    /// <summary>
    /// Executes the RelayCommand on the current command target.
    /// </summary>
    /// <param name="parameter">
    /// Data used by the command. If the command does not require data to be passed,
    /// this object can be set to null.
    /// </param>
    public void Execute(object parameter)
    {
        _execute();
    }
    /// <summary>
    /// Method used to raise the CanExecuteChanged event
    /// to indicate that the return value of the CanExecute
    /// method has changed.
    /// </summary>
    public void RaiseCanExecuteChanged()
    {
        var handler = CanExecuteChanged;
        if (handler != null)
        {
            handler(this, EventArgs.Empty);
        }
    }
}

Использование

<local:MyStackPanel DataContext="{Binding RelativeSource={RelativeSource Mode=Self}}">
    <Button Command="{Binding BtnClickCommand}" Content="ClickMe" />
</local:MyStackPanel>
...