UWP 命令栏 - 内容是完全独立的上下文

本文关键字:独立 上下文 命令 UWP | 更新日期: 2023-09-27 18:27:25

一段时间以来,我一直在尝试以自己的方式实现Microsoft汉堡模式。

最终结果如下:

  • 用于包含当前页面和汉堡菜单的 AppShell(菜单始终可见(
  • 在 Appshell 中,网格包含两行:一行高度为 48px,一行为起点高度。
  • 在第一行中,添加了命令栏(全局(和汉堡按钮(具有自定义样式的切换按钮,宽度和高度为 48px,汉堡包字体图标位于中心(
  • 在第二行中,"拆分视图"窗格上有一个列表框,内容中有一个框架。

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

但是,我想将切换按钮移动到命令栏中。它工作得很好,除了绑定(IsChecked of ToggleButton绑定到SplitView的IsPaneOpen(不起作用。我使用常规的 ElementName 目标,并且不希望使用 ViewModel 属性。

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

UWP 命令栏 - 内容是完全独立的上下文

我能够绑定到 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;
}
这对

我有用:

<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>

您已绑定 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>