1

我最近为 wp7 创建了一个应用程序。现在我准备为我的应用提交更新。在我添加了一个 UserControl 页面(包含一个对话框)。我希望它显示在 MainPage.xaml 或应用程序启动中,但仅适用于第一个应用程序启动。我第一次知道如何显示 MessageBox,但不知道如何显示 xaml 页面。

if (!IsolatedStorageSettings.ApplicationSettings.Contains("IsFourthLaunchDone"))
{
   MessageBox.Show("To Enable Full screen mode, go to settings and select Full Screen Browsing.");
   IsolatedStorageSettings.ApplicationSettings["IsFourthLaunchDone"] = true;
}

有人可以帮我吗?在此先感谢您的帮助!

4

1 回答 1

2

这是如何使用 MessageBox 正确完成此操作的一个想法。应用程序.xaml.cs:

public static bool IsFourthLaunch = false;

ApplicationLaunching(){

if (!IsolatedStorageSettings.ApplicationSettings.Contains("IsFourthLaunchDone"))
{
     IsFourthLaunch = true;
}

}

MainPage.xaml.cs:

MainPage()
{
   if (App.isFourthLaunch)
    {
       Loaded += OnFourthLaunch;
    }
}

public void OnFourthLaunch(object sender, RoutedEventArgs e)
{
    Loaded -= OnFourthLaunch;
    if (App.IsFourthLaunch)
     {
       MessageBox.Show("To Enable Full screen mode, go to settings and select Full Screen Browsing.");
       IsolatedStorageSettings.ApplicationSettings["IsFourthLaunchDone"] = true;
       App.IsFourthLaunch = false;

     }

}

要使用 UserControl 执行此操作,请将控件添加到页面,最初使用折叠可见性。在要显示的场景中,将可见性更改为可见。您需要弄清楚您希望 Control 以何种方式工作,并且您可能需要重写 OnBackKeyPress 以为用户提供关闭控件的逻辑方式。

protected override void OnBackKeyPress( System.ComponentModel.CancelEventArgs e )
{    
   if (myControl.Visibility == Visibility.Visible)
   {
      e.Cancel = true;
      myControl.Visibility = Visibility.Collapsed;
      }        

}
于 2012-06-24T17:27:53.383 回答