3

我正在尝试将项目添加到具有行为的应用程序栏中。

在 xaml 中,它们看起来像:

<phone:PhoneApplicationPage.ApplicationBar>
  <shell:ApplicationBar IsVisible="True"
                          IsMenuEnabled="True">
      <shell:ApplicationBarIconButton x:Name="Save" 
                                      IconUri="/resources/icons/appbar.check.rest.png"
                                      Text="Save"  />
      <shell:ApplicationBarIconButton x:Name="Cancel"
                                      IconUri="/resources/icons/appbar.cancel.rest.png"
                                      Text="Cancel"  />
  </shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>

<i:Interaction.Behaviors>
  <Behaviors:ApplicationBarIconButtonCommand TextKey="Save" 
                                             CommandBinding="{Binding SaveEventSetupCommand}" />
  <Behaviors:ApplicationBarIconButtonCommand TextKey="Cancel" 
                                             CommandBinding="{Binding CancelEventSetupCommand}" />
</i:Interaction.Behaviors>

对于多语言支持,我需要添加如下内容:

Text="{Binding Path=Localizedresources.lblCourse, Source={StaticResource LocalizedStrings}}"

到每个按钮。这似乎不能在 xaml 中完成,因此需要使用代码。

该按钮添加在此代码中:

ApplicationBarIconButton appBarSaveButton = new ApplicationBarIconButton(
            new Uri("/resources/icons/appbar.check.rest.png", UriKind.Relative)) 
            { Text = "Test" };

ApplicationBar.Buttons.Add(appBarSaveButton);

我只是不知道如何添加行为。这是我的起点:

WP7Contrib.View.Controls.Behaviors.ApplicationBarIconButtonCommand 
            ibc = new WP7Contrib.View.Controls.Behaviors.ApplicationBarIconButtonCommand 
{ TextKey = "Test" };

基本上,如果有人愿意的话,我正在寻找一个工作样本。

谢谢

4

3 回答 3

2

根据马特的回答,这是我的解决方案:

在 xaml 页面顶部添加:

xmlns:Preview="clr-namespace:Phone7.Fx.Preview;assembly=Phone7.Fx.Preview"

这在底部的网格内:

    <Preview:BindableApplicationBar x:Name="AppBar" BarOpacity="1.0" IsVisible="{Binding IsBarVisible}" >
        <Preview:BindableApplicationBarIconButton 
            Command="{Binding SaveCommand}"
            Text="{Binding Path=Localizedresources.lblSave, Source={StaticResource LocalizedStrings}}" 
            IconUri="/resources/icons/appbar.check.rest.png" />
        <Preview:BindableApplicationBarIconButton 
            Command="{Binding CancelCommand}"
            Text="{Binding Path=Localizedresources.lblCancel, Source={StaticResource LocalizedStrings}}" 
            IconUri="/resources/icons/appbar.cancel.rest.png" />
    </Preview:BindableApplicationBar>

参考资料:
http ://blog.humann.info/post/2010/08/27/How-to-have-binding-on-the-ApplicationBar.aspx

http://www.codeproject.com/KB/windows-phone-7/CommandToAppBarWP7.aspx?display=Mobile

于 2011-04-17T14:48:14.347 回答
0

您不能在 XAML 中指定一个资源的Text属性ApplicationBarIconButton,您已经解决了这个问题。要创建一个行为并将其附加到代码中,您可以使用类似于以下的代码(从我现在正在开发的应用程序修改):

((ApplicationBarIconButton)this.ApplicationBar.Buttons[0].Text = Strings.NewContact;
var newBehavior = new ApplicationBarButtonNavigation
{
    ButtonText = Strings.NewContact,
    NavigateTo = new Uri("/views/ContactView.xaml", UriKind.RelativeOrAbsolute),
};
Interaction.GetBehaviors(this).Add(newBehavior);

您的方案的主体是相同的:创建行为,然后使用Interaction.GetBehaviors(this).Add(yourBehavior);

注意:在上面的示例中,指的是视图的代码隐藏,而不是在视图模型中。

于 2011-04-15T12:36:32.107 回答
0

您绝对可以使用http://blog.humann.info/post/2010/08/27/How-to-have-binding-on-the-ApplicationBar.aspx中的包装器使 ApplicationBar 可绑定

不确定添加命令,但这应该可以使用相同的技术。

于 2011-04-15T12:39:45.163 回答