c# - 无法将命令绑定(bind)到 HyperlinkBut​​ton (Windows Phone 8.1)

标签 c# xaml mvvm windows-phone-8.1 icommand

我正在构建一个使用 MVVM 的应用程序,并尝试将命令绑定(bind)到按钮,如本教程中所示:

https://channel9.msdn.com/Series/Windows-Phone-8-1-Development-for-Absolute-Beginners/Part-24-Binding-to-Commands-and-CommandParameters

但是,我无法使绑定(bind)正常工作 - 当我单击 HyperlinkBut​​ton 并且我在 Execute 方法开头放置的断点没有触发时,没有任何反应。

这是我的 View 模型:

public class ArticleListViewModel
{
    public IEnumerable<ArticleItem> Items { get; set; }

    public async Task PopulateArticles()
    {
      // ...
    }
}


public class ArticleItem
{
    public ArticleItem()
    {
        OpenLinkCommand = new OpenArticleLinkCommand();
    }

    public ICommand OpenLinkCommand; 

    public string Url { get; set; }

    public string Title { get; set; }
}

OpenArticleLinkCommand.cs:

public class OpenArticleLinkCommand : ICommand
{
    public bool CanExecute(object parameter)
    {
        return true;
    }

    public event EventHandler CanExecuteChanged;

    public async void Execute(object parameter)
    {
        var article = parameter as ArticleItem;

        if (article != null)
        {
            var success = await Launcher.LaunchUriAsync(new Uri(article.Url));

            //TODO: handle success/fail
        }
    }
}

这是我的 View 的样子:

<UserControl
    x:Class="LTNewsFeed.Views.ArticleItemView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LTNewsFeed.Views"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300"
    d:DesignWidth="400">


    <ListBox ItemsSource="{Binding}" x:Name="mainListBox">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">

                    <HyperlinkButton x:Name="Title" 
                                     Content="{Binding Path=Title, Mode=OneWay}" 
                                     Command="{Binding OpenLinkCommand}"   
                                     Grid.Column="0"/>

                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

</UserControl>

主页.xaml:

<Page
    x:Class="LTNewsFeed.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LTNewsFeed"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:views="using:LTNewsFeed.Views"
    xmlns:src="using:LTNewsFeed"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

    <Grid>
        <views:ArticleItemView x:Name="ItemsOnPage" />
    </Grid>
</Page>

我在 MainPage.xaml.cs 中填充 View 模型项集合:

    protected override async void OnNavigatedTo(NavigationEventArgs e)
    {
        base.OnNavigatedTo(e);

        await viewModel.PopulateArticles();

        ItemsOnPage.DataContext = viewModel.Items;
    }

我尝试过但没有成功的事情:

  • 引用 DataContext 并指定 ElementName,如 this answer 中的建议.
  • 将 HyperlinkBut​​ton 更改为简单的按钮。
  • OpenArticleLinkCommand 移动到与我的 ArticleItem 模型相同的文件中,以防 namespace 因某种原因无法识别。
  • 在 Google 和 StackOverflow 上浏览类似问题 - 在我看来,我所做的一切都与示例中的相同。

如果能为我指明正确的方向,或描述我如何调试此类内容,我们将不胜感激。

最佳答案

听起来很奇怪,绑定(bind)只对属性有效。因此,您需要将命令公开为属性而不是字段:

public ICommand OpenLinkCommand { get; set; }

您可能已经通过查看 Visual Studio 的输出面板注意到了这一点,错误消息在执行时显示在该面板上:

Error: BindingExpression path error: 'OpenLinkCommand' property not found

请注意,您会立即遇到另一个问题:您希望命令有一个参数,但您忘记设置一个。由于您显然希望将 ArticleItem 作为参数,因此您可以简单地绑定(bind)数据上下文:

<HyperlinkButton x:Name="Title" 
     Content="{Binding Path=Title, Mode=OneWay}" 
     Command="{Binding OpenLinkCommand}"   
     CommandParameter="{Binding}"
     Grid.Column="0"/>

关于c# - 无法将命令绑定(bind)到 HyperlinkBut​​ton (Windows Phone 8.1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33461974/

相关文章:

c# - MVC WebAPI 中的 MapRoute 或 MapHttpRoute

c# - Xamarin.Forms Android 更改按钮图像的颜色

c# - 从 ViewModel 打开一个窗口窗体

mvvm - 我可以在Xamarin.iOS和Xamarin.Android(不是Xamarin.Forms)上使用Prism吗?

c# - 当 ListBox 绑定(bind)到 ObservableCollection 时绑定(bind) ListBoxItem 属性

ios - 如何在 MVVM 中存储 api 响应数据(非持久性)?

c# - OAuthException : (#200) The user hasn't authorized the application to perform this action

c# - 强制更改 RadioButtonGroup 中的样式?

xaml - 使用绑定(bind) XAML 连接字符串

c# - EventTrigger 绑定(bind)到来自 DataContext 的事件