2

我很好奇在“迷你”模式下如何获得 Windows Phone 应用程序栏的高度。当显示常规图标按钮时,我已经看到了几个关于高度的资源,但没有一个只有椭圆。

4

2 回答 2

3

在代码隐藏中:

double appBarMiniSize = ApplicationBar.MiniSize; // 30.0
于 2013-12-08T08:58:05.087 回答
0

我会帮你自己解决这个问题。创建一个测试应用程序并修改主页以具有以下 xaml

<phone:PhoneApplicationPage
    x:Class="WinPhone8App.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    shell:SystemTray.IsVisible="False">

    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <TextBlock Text="{Binding ActualHeight, ElementName=LayoutRoot}" />
    </Grid>
    <phone:PhoneApplicationPage.ApplicationBar>
        <shell:ApplicationBar Mode="Minimized">
            <shell:ApplicationBar.MenuItems>
                <shell:ApplicationBarMenuItem Text="test" />
            </shell:ApplicationBar.MenuItems>
        </shell:ApplicationBar>
    </phone:PhoneApplicationPage.ApplicationBar>
</phone:PhoneApplicationPage>

运行应用程序。您会注意到高度将显示在 TextBlock 中。取那个数额并从 800 中减去它,你就会得到答案。

于 2013-10-22T02:18:18.967 回答