2

在我的场景中,我想为BasePage我的所有 Windows 8.1 App Pages 编写一个。在此BasePage应该创建一个TopAppBar.

其实我有:

public CommandBar TopCommandBar
{
    get
    {
        // Check if a TopAppBar exists
        if (this.TopAppBar != null) return this.TopAppBar.Content as CommandBar;

        var appBar = new AppBar();
        this.TopAppBar = appBar;
        var top = this.TopAppBar.Content as CommandBar;
        if (top == null)
        {
            topCommandBar = new CommandBar();
            this.TopAppBar.Content = topCommandBar;
        }
        return this.TopAppBar.Content as CommandBar;
    }
}

这段代码运行良好。但后来BaseClass我想添加一个AppBarButton

if (ShowCloseButton)
{
    var closeBtn = new AppBarButton();
    closeBtn.Icon = new SymbolIcon(Symbol.Clear);
    closeBtn.Label = "Close";
    closeBtn.Click += closeBtn_Click;
    this.TopCommandBar.PrimaryCommands.Insert(0, closeBtn);
}

奇怪的行为是直到我单击鼠标右键两次closeBtn才会显示在 中。TopAppBar

表示我第一次单击右键->TopAppBar出现但里面没有按钮。

然后我再次单击右键->TopAppBar保持打开状态,并且该按钮显示其全部功能。

4

2 回答 2

2

是的,我同意这看起来像一个错误。我在代码生成的路线上看到了同样的事情。经过调查,看起来 AppBar.IsOpen 在右键单击或滑动期间切换为 true,但 CommandBar.IsOpen 仍然为 false。这个修复对我有用:

BottomAppBar.Opened += (o, args) => { (this.BottomAppBar.Content as CommandBar).IsOpen = true; };

于 2013-11-16T05:49:21.640 回答
0

您也可以直接将 AppBar 用作 CommandBar:

    CommandBar appBar = this.BottomAppBar as CommandBar;
    if (appBar == null)
    {
        appBar = new CommandBar();
        this.BottomAppBar = appBar;
    }

    var btnAbout = new AppBarButton() { Icon = new SymbolIcon(Symbol.Help), Label = "About" };
    btnAbout.Click += btnAbout_Click;
    appBar.SecondaryCommands.Add(btnAbout);
于 2014-06-26T12:50:36.930 回答