繁体   English   中英

Windows Phone-自定义控件如何将事件传播到ViewModel

[英]Windows Phone - custom control how propagate event to ViewModel

我正在为菜单创建自定义控件,并且控件中有ListBox。 像这样:

<ListBox x:Name="MenuItemsList"
         Grid.Row="1"
         ItemsSource="{Binding ProgramList, Mode=OneWay}">
         <ListBox.ItemTemplate>
             <DataTemplate>
                 <StackPanel Margin="10">
                       <TextBlock Text="{Binding Title}" />
                  </StackPanel>
             </DataTemplate>
         </ListBox.ItemTemplate>
 </ListBox>

现在,当我想捕获Tap事件时,请从类中获取属性并保留MVVM模型。 如何在MainPage.xaml.cs或MainViewModel中捕捉到这一点?

我的MainPage.xaml中有以下代码:

<controls:BottomMenu x:Name="BottomMenu" Canvas.Top="{Binding MenuCanvasTop}"
                             Width="480" Height="400">
</controls:BottomMenu>

我已经在MainViewModel中准备了以下代码:

public RelayCommand<string> GoToSectionCommand
        {
            get
            {
                return goToArticleCommand
                    ?? (goToArticleCommand = new RelayCommand<string>(
                         NavigateToSection));
            }
        }

但是我不知道怎么称呼它。 最好的方法是什么?

编辑:我试图扩展列表框:

 <ListBox x:Name="MenuItemsList"
                                     Grid.Row="1"
                                     ItemsSource="{Binding ProgramList, Mode=OneWay}">
                                <ListBox.ItemTemplate>
                                    <DataTemplate>
                                        <StackPanel Margin="10">
                                            <Button Content="{Binding Title}" 
                                                    Command="{Binding ListButtonClickCommand, Source={RelativeSource Self}}"
                                                    CommandParameter="{Binding Url}"/>
                                        </StackPanel>
                                    </DataTemplate>
                                </ListBox.ItemTemplate>
                            </ListBox>

后面有代码:

    public ICommand ListButtonClickCommand
    {
        get { return (ICommand)GetValue(ListButtonClickCommandProperty); }
        set { SetValue(ListButtonClickCommandProperty, value); }
    }

    public static readonly DependencyProperty ListButtonClickCommandProperty =
            DependencyProperty.Register("ListButtonClickCommand", typeof(ICommand), typeof(BottomMenu), new PropertyMetadata(null)); 

    public BottomMenu()
    {
        InitializeComponent();
    }

然后在MainPage.xaml中:

    <controls:BottomMenu x:Name="BottomMenu" Canvas.Top="{Binding MenuCanvasTop}"
                         Width="480" Height="400"
                         ListButtonClickCommand="{Binding MenuItemButtonCommand}">

    </controls:BottomMenu>

在MainViewModel中:

    private ICommand menuItemButtonCommand;
    public ICommand MenuItemButtonCommand
    {

        get
        {
            return menuItemButtonCommand
                ?? (menuItemButtonCommand = new RelayCommand(
                     NavigateToArticleSection));
        }

    }

现在没有运气。 没用 没有触发RelayCommand。

Edit2我猜问题出在自定义控件中的绑定命令上,但是我不知道如何解决它。

您只需要绑定到UserControl -使用“ RelativeSource Self”将绑定到Button,这不是您想要的。 您应该能够使用“ ElementName”绑定来找到用户控件:

<UserControl x:Name="UserControlName" ... >

    ...

        <Button Content="{Binding Title}" 
                Command="{Binding ElementName=UserControlName,Path=ListButtonClickCommand}"
                CommandParameter="{Binding Url}"/>

    ...

</UserControl>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM