如何将委托命令绑定到Windows Phone 8中的ApplicationBarIconButton

时间:2015-08-06 09:10:06

标签: c# windows-phone-8

如何将我的视图模型中定义的Delegate命令绑定到c#中我的xaml windows phone 8应用程序的ApplicationBarIconButton。 ApplicationBarIconButton没有Command属性。

1 个答案:

答案 0 :(得分:0)

它有Click个事件。代码背后:

myApplicationBarIconButton.Click += yourDelegate;

或者在XAML中:

 <shell:ApplicationBar.MenuItems>
        <shell:ApplicationBarMenuItem Click="yourDelegate" Text="Yo" />
 ...