0

嘿伙计们请帮助解决我的问题,我制作了一个应用程序,我必须将其上传到 Windows 商店,但问题是它不支持快照视图。我希望它不应该在快照视图中工作,当应用程序进入快照视图时,它只会显示一条消息“切换到全屏”。请告诉我如何为此编写代码以及在 XAML 或 XAML.cs 中编写代码的位置。提前致谢。

4

2 回答 2

0

添加一个基本页面并将 XAML 替换为:

<common:LayoutAwarePage
    x:Name="pageRoot"
    x:Class="App1.OopsPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App1"
    xmlns:common="using:App1.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid>
        <!-- Full screen content. -->
        <Grid x:Name="FullScreenGrid">
            <TextBlock>Here is your content.</TextBlock>
        </Grid>

        <!-- Snapped view content. -->
        <Grid x:Name="SnappedViewGrid" Visibility="Collapsed">
            <TextBlock>Please go back to full screen :(</TextBlock>
        </Grid>

        <VisualStateManager.VisualStateGroups>

            <!-- Visual states reflect the application's view state -->
            <VisualStateGroup x:Name="ApplicationViewStates">
                <VisualState x:Name="FullScreenLandscape"/>
                <VisualState x:Name="Filled"/>
                <VisualState x:Name="FullScreenPortrait" />

                <!-- The back button and title have different styles when snapped -->
                <VisualState x:Name="Snapped">
                    <Storyboard>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="FullScreenGrid" Storyboard.TargetProperty="Visibility">
                            <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
                        </ObjectAnimationUsingKeyFrames>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SnappedViewGrid" Storyboard.TargetProperty="Visibility">
                            <DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
                        </ObjectAnimationUsingKeyFrames>
                    </Storyboard>
                </VisualState>
            </VisualStateGroup>
        </VisualStateManager.VisualStateGroups>
    </Grid>
</common:LayoutAwarePage>

确保替换为您的应用命名空间,并且您的Common文件夹中App1必须有LayoutAwarePage.cs 。

于 2013-10-01T16:25:54.727 回答
0

可能的解决方案之一

  1. 创建要用于 Snap 的新页面
  2. 侦听用户捕捉应用程序时引发的事件。
  3. 导航到具有“切换到全屏”的页面
  4. 监听用户取消快照时引发的事件
  5. 返回原始页面

为达到这个,

在 OnLaunched 事件中的 App.xaml.cs 中写下这个

 Window.Current.SizeChanged += Current_SizeChanged;

现在对于事件处理程序

 void Current_SizeChanged(object sender, Windows.UI.Core.WindowSizeChangedEventArgs e)
    {
        ApplicationViewState viewState = ApplicationView.Value;
       if (viewState == ApplicationViewState.Snapped)
        {
            //Navigate to the new common snap page
        }          
      else{
              //Write the code to check if the previous state was snapped and then navigate back
        }
   }
于 2013-10-01T15:01:44.243 回答