windows store:注册事件处理程序“SizeChanged”

时间:2014-01-06 16:25:23

标签: windows-store-apps handler splash-screen

我想按照Windows 8.1应用程序的启动画面教程。

您可以在this link找到该教程。在某些时候,它说

  

确保在类构造函数中注册Window.SizeChanged处理程序(示例中为ExtendedSplash_OnResize)

我不知道怎么做。我该怎么办?

提前感谢您的回复。

编辑:

也许这与此问题有关。在某些时候,教程说要将这些命名空间添加到我编写构造函数的文件中:

using Windows.ApplicationModel.Activation;
using Windows.UI.Core;
using SplashScreenExample.Common;

但我无法添加最后一个,因为Common名称空间不存在(只有SplashScreenExample.Pages)。

1 个答案:

答案 0 :(得分:0)

在你的类构造函数中,尝试使用类似的东西来注册事件 -

Window.Current.SizeChanged += new WindowSizeChangedEventHandler(ExtendedSplash_OnResize);

希望有所帮助!