UWP CommandBar - 内容是完全独立的上下文?

时间:2015-12-20 17:03:10

标签: c# uwp hamburger-menu commandbar

我一直试图以自己的方式实施微软的汉堡包模式。

最终结果如下:

  • 用于包含当前页面和汉堡菜单的AppShell(菜单始终可见)
  • 在Appshell中,Grid包含两行:一个48px高,一个一个起始高度。
  • 在第一行中,添加了一个命令栏(全局)和一个汉堡包按钮(togglebutton,自定义样式为48px宽和高,汉堡包fonticon位于中心)
  • 在第二行中,SplitView在窗格上有一个ListBox,在内容中有一个Frame。

这样就可以控制内容,同时显示全局菜单和命令栏。在Frame的Navigated事件中,我更新CommandBar以从Frame的Content属性(我使用具有这些属性的自定义页面控件)和CommandBar的内容(现在是,a)中提取主要和辅助命令带有绑定的单个TextBlock。

但是,我想将ToggleButton移动到CommandBar中。它工作得很好,除了绑定(Iskcked of ToggleButton绑定到SplitView的IsPaneOpen)不起作用。我使用常规的ElementName定位,并且不希望使用ViewModel属性。

CommandBar.Content是否使用不同的上下文?或者为什么ElementName引用不起作用?

3 个答案:

答案 0 :(得分:0)

这对我有用:

<Page
    x:Class="StackOverflowTests.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="48"/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <CommandBar>
            <CommandBar.Content>
                <AppBarToggleButton Icon="Globe" IsChecked="{Binding ElementName=SplitView,Path=IsPaneOpen,Mode=TwoWay}"/>
            </CommandBar.Content>
        </CommandBar>
        <SplitView Grid.Row="1" Name="SplitView" IsPaneOpen="{x:Bind Appbarbutton.IsChecked.Value,Mode=OneWay}">
            <SplitView.Pane>
                <ListBox>
                    <ListBoxItem>Foo</ListBoxItem>
                    <ListBoxItem>Bar</ListBoxItem>
                </ListBox>
            </SplitView.Pane>
            <SplitView.Content>
                <TextBlock>stuff here</TextBlock>
            </SplitView.Content>
        </SplitView>
    </Grid>
    <Page.BottomAppBar>
        <CommandBar>
            <CommandBar.Content>
                <AppBarToggleButton Name="Appbarbutton" Icon="Home" />
            </CommandBar.Content>
        </CommandBar>
    </Page.BottomAppBar>
</Page>

答案 1 :(得分:0)

唯一的方法是,我如何能够绑定到AppBarToggleButton是在后面的代码中设置DataContext。

XAML:

<Page.BottomAppBar>
  <CommandBar x:Name="CommandBar">
    <AppBarToggleButton x:Name="Button" IsChecked="{Binding IsPaneOpen, Mode=TwoWay}" Icon="Home" Label="Button"/>
  </CommandBar>
</Page.BottomAppBar>

代码背后:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
  base.OnNavigatedTo(e);
  Button.DataContext = SplitView;
}

答案 2 :(得分:0)

您已绑定DataContext: 示例:

<Page.BottomAppBar >
    <CommandBar x:Name="commandBar" DataContext="{Binding}">
        <CommandBar.Content>
            <StackPanel Margin="0,0">
                <ListView ItemsSource="{Binding Confirmation.AvailableValues}" ItemContainerStyle="{StaticResource ListViewItemBase}">
                    <ListView.ItemTemplate>
                        <DataTemplate>
                            <Button Content="{Binding Value.DisplayName}" Command="{Binding DataContext.Confirm, ElementName=commandBar}" CommandParameter="{Binding Value}" HorizontalAlignment="Center"></Button>
                        </DataTemplate>
                    </ListView.ItemTemplate>
                </ListView>
                <Line Margin="5" X1="0" X2="1000" Y1="0" Y2="0" HorizontalAlignment="Stretch" Height="2"  Stroke="#888888"   StrokeThickness="1" ></Line>
            </StackPanel>
        </CommandBar.Content>
    </CommandBar>

</Page.BottomAppBar>