如何将我的视图模型中定义的Delegate命令绑定到c#中我的xaml windows phone 8应用程序的ApplicationBarIconButton。 ApplicationBarIconButton没有Command属性。
答案 0 :(得分:0)
它有Click
个事件。代码背后:
myApplicationBarIconButton.Click += yourDelegate;
或者在XAML中:
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem Click="yourDelegate" Text="Yo" />
...