我尝试编写一个Obscured and Unobscured事件,但是有一个错误:
PhoneApplicationFrame phoneAppRootFrame = (Application.Current as App).RootFrame
错误:
Auf den Member 'Timer.App.RootFrame.get' kann nicht mit einem Instanzenverweis zugegriffen werden. Qualifizieren Sie ihn stattdessen mit einem Typnamen.
错误是德语,因为我使用的是德语版的Visual Studio
我如何解决问题?
编辑:
代码:
PhoneApplicationFrame phoneAppRootFrame = (Application.Current as App).RootFrame;
phoneAppRootFrame.Obscured += OnObscured;
phoneAppRootFrame.Unobscured += Unobscured;