PhoneApplicationFrame自定义无效

本文关键字:无效 自定义 PhoneApplicationFrame | 更新日期: 2023-09-27 18:21:44

我正在尝试以某种方式自定义PhoneApplicationFrame,但我不明白该如何进行。

让我解释一下:我正在开发一个WP8应用程序,我想它有一个背景声音和音效(同时)。在寻求帮助后,在这篇帖子中,我被建议使用MediaElement,并将其添加到PhoneApplicationFrameXAML中(这正确吗?)。

我在这件事上做了什么:

我创建了一个框架(称为IntroFrame),并在App.xaml.cs文件中将其设置为RootFrame。因此:

public partial class App
{
    public static IntroFrame RootFrame {get; private set;}
    ...
}

InitializePhoneApplication方法中,我修改了代码:

private void InitializePhoneApplication()
{
   ...
   RootFrame = new IntroFrame();
   RootFrame.Navigated += CompleteInitializePhoneApplication;
   ...
}

在XAML中,我尝试添加MediaElement:

<phone:PhoneApplicationFrame
    x:Class="PazaakPhone.IntroFrame"
    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"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    mc:Ignorable="d"
    shell:SystemTray.IsVisible="True">
    <MediaElement x:Name="BackgroundMedia" Source="Assets/Audio/bgm.mp3" AutoPlay="True" /> 
</phone:PhoneApplicationFrame>

框架看起来很好,我试过像这里这样的高度技巧,它奏效了。然而,我试图自定义该框架,添加视觉元素,更改MediaElement,但没有。。。没有效果。我想PhoneApplicationFrame不能有像PhoneApplicationPage那样的内容?我想我可以在Frame托管所有其他页面的时候在后台做这件事。但要么我走错了路,要么我错过了什么。可能是什么?

PhoneApplicationFrame自定义无效

您可以通过重新模板化PhoneApplicationFrame:来实现这一点

<Application.Resources>
    <Style x:Key="myPhoneApplicationFrameStyle" TargetType="phone:PhoneApplicationFrame">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="phone:PhoneApplicationFrame">
                    <Grid x:Name="MediaElementContainer" Margin="0">
                        <Grid.RowDefinitions>
                            <RowDefinition Height="Auto"/>
                            <RowDefinition Height="*"/>
                        </Grid.RowDefinitions>
                        <MediaElement Grid.Row="0" x:Name="MediaElement" Source="Assets/Audio/bgm.mp3" AutoPlay="True" Volume="1.0" Visibility="Collapsed" />
                        <Grid Grid.Row="1" x:Name="ClientArea">
                            <ContentPresenter />
                        </Grid>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Application.Resources>

然后在app.cs:中设置样式

private void InitializePhoneApplication()
{
    if (phoneApplicationInitialized)
        return;
    RootFrame = new PhoneApplicationFrame { Style = Resources["myPhoneApplicationFrameStyle"] as Style };
    RootFrame.Navigated += CompleteInitializePhoneApplication;
    RootFrame.NavigationFailed += RootFrame_NavigationFailed;
    // Ensure we don't initialize again
    phoneApplicationInitialized = true;
}