在Windows Phone 7中注销按钮的标题

时间:2013-06-17 10:43:48

标签: windows silverlight windows-phone-7 header

我是Windows手机开发的新手。

我需要带有Logout按钮的自定义标题,然后在每个页面上使用它。我如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

首先,在应用中的每个页面的标题中都有一个Logout按钮并不是一个好主意。我建议您将ApplicationBar用于此目的,然后添加注销MenuItem。主要思想是不经常使用注销操作,因此它是隐藏的。并将您的注销逻辑添加到基础PhoneApplicationPage类或基类ViewModel类。 如果使用ApplicationBar不适合您,您可以使用UserControl并将其添加到每个应用程序页面。 标题UserControl

的示例
<UserControl x:Class="PhoneApp3.LogoutUserControl"
    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"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    d:DesignHeight="480" d:DesignWidth="480">

    <Grid x:Name="LayoutRoot" Background="{StaticResource PhoneChromeBrush}">
        <StackPanel>
            <Image Source="/Images/Header.jpg"/>
            <Button Click="Logout" Content="Logout"/>
        </StackPanel>
    </Grid>
</UserControl>

您的主页看起来像

   <phone:PhoneApplicationPage
    x:Class="PhoneApp3.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"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:userControls="clr-namespace:PhoneApp3"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">
    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
            <userControls:LogoutUserControl Grid.Row="0" x:Name="HeaderControl"/>
            <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        </Grid>
    </Grid>
</phone:PhoneApplicationPage>