c ++ UWP - 如何在MainPage中打开空白页面作为选项卡

时间:2018-04-15 17:56:40

标签: c++ uwp

希望你能帮我一些我在谷歌上没有得到任何结果的东西。我有我的MainPage.xaml,汉堡菜单中有一个按钮。当我单击此按钮时,我希望能够在MainPage.xaml中的SplitView中打开BlankPage.xaml,但作为可关闭的选项卡。我唯一的参考是这张照片。 this picture

请注意,红色圆圈是我想要的。请注意我使用的是C ++。

提前完成。

[编辑]我决定去一个StackPanel,它包含另一个带有2个按钮的StackPanel。一个按钮打开标签,另一个按钮完全关闭。

        <StackPanel x:Name="TabPanel" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" Width="1450" Height="26" Margin="50 40 0 0">
        <StackPanel x:Name="PageTab1" Orientation="Horizontal" HorizontalAlignment="Left">
            <Button x:Name="TabNameBtn" Content="Tab1" FontSize="11" Foreground="Black" BorderThickness="0" HorizontalAlignment="Left" VerticalAlignment="Center" Height="26" Margin="0 0 0 0"/>
            <Button x:Name="TabCloseBtn" FontFamily="Segoe MDL2 Assets" Content="&#xE10A;" FontWeight="ExtraLight" FontSize="10" Foreground="Black" BorderThickness="1" HorizontalAlignment="Right" VerticalAlignment="Center" Height="26" Width="26" Margin="0 0 0 0"/>
        </StackPanel>
    </StackPanel>

如何添加另一个&#34; PageTab1&#34; (增加为&#34; PageTab2,&#34; PageTab3&#34; ...)到&#34; TabPanel&#34;按下按钮时使用c ++代码?

0 个答案:

没有答案