从Code Behind操作Windows Phone 8.1 XAML中的应用程序栏

时间:2014-10-07 12:09:39

标签: c# windows-runtime winrt-xaml windows-phone-8.1 commandbar

这可能是一个微不足道的初学者问题,我已经找到了很多关于Windows和Silverlight应用程序的相关信息,但没有什么可以直接帮助我。我正在用C#和XAML编写一个Windows Phone 8.1 / WinRT应用程序,我想以编程方式修改在XAML中创建的应用程序栏。例如,我想在调试版本中包含一个按钮,使用后面的代码中的预处理程序指令。

在下面的XAML代码中,我正在创建一个带有两个按钮的BottomAppBar。如何创建第二个按钮(AppBarAddSampleItemsButton),包括代码背后的所有属性?

<prism:VisualStateAwarePage.BottomAppBar>
    <CommandBar >
        <CommandBar.PrimaryCommands>
            <AppBarButton x:Uid="AppBarNewItemButton"
                          Label="New item"
                          Icon="Add" Command="{Binding GoToAddItemPageCommand}" />
        </CommandBar.PrimaryCommands>
        <CommandBar.SecondaryCommands>
            <AppBarButton x:Uid="AppBarAddSampleItemsButton"
                          Label="Add sample items"
                          Command="{Binding GoToAddSampleItemssPageCommand}" />
        </CommandBar.SecondaryCommands>
    </CommandBar>
</prism:VisualStateAwarePage.BottomAppBar>

2 个答案:

答案 0 :(得分:7)

以下是在后面的代码中创建AppBarButton并将其添加到当前 Page BottomAppBar的示例代码:

private void AddButtonToAppBar()
{
    AppBarButton buttonToAdd = new AppBarButton { Label = "Label", Icon = new SymbolIcon(Symbol.Help) };
    buttonToAdd.Click += async (sender, e) =>  await new MessageDialog("Button clicked").ShowAsync();
    // add button to Page's BottoAppBar
    (BottomAppBar as CommandBar).PrimaryCommands.Add(buttonToAdd);
}

修改 - 对于 Binding (再次从我的头脑中,所以你必须检查一下)这应该可行:

Binding myBind = new Binding();
myBind.Path = new PropertyPath("GoToAddSampleItemssPageCommand");
myBind.Source = DataContext;
buttonToAdd.SetBinding(AppBarButton.CommandProperty, myBind);

有关DataBinding at MSDN的更多信息。

答案 1 :(得分:0)

在Windows Phone开发中心进行了一些挖掘之后,我找到了这个页面:How to change app bar icon buttons and menu items dynamically for Windows Phone。希望它有所帮助!