Tag: 赢得通用的应用程序

通用应用程序消息框:“名称”MessageBox“在当前上下文中不存在”

我想在我的WP8.1应用程序中使用MessageBox来显示下载错误。 我补充说: using System.Windows; 但是当我input: MessageBox.Show(""); 我收到错误: "The name 'MessageBox' does not exist in the current context" 在对象浏览器中,我发现这样的类应该存在,并在“Project-> Add reference …-> Assemblies-> Framework”中显示所有程序集都被引用。 我想念什么? 或者有另一种方式如何显示像messagebox的东西?

Windows 8 Runtime(WinRT / Windowsapp store应用/ Windows 10通用应用)与Silverlight和WPF相比如何?

我正试图让我的脑袋围绕用于创buildMetro风格应用程序的新的Windows 8 Runtime。 我知道你可以在XAML中使用它,它基于.NET,所以C#和VB.NET可以用来编写应用程序,但是这似乎与HTML,CSS,DOM和JavaScript有关。 一个.NET UI程序员可以理解的话,有人能解释几个段落中的内容吗? (我错过了理解它的必要的“钥匙”。) 我们都知道,至less在英特尔系统上,WPF, Silverlight , Windows Forms等将继续在Windows 8(和Windows 10)下工作,所以请不要告诉我…

暂停事件没有提高使用WinRT

我遇到了使用WinRT在Windows Phone 8.1上暂停事件的问题,它不会触发。 我不知道为什么。 这是我的代码: /// <summary> /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// </summary> public App() { InitializeComponent(); Suspending += OnSuspending; #if DEBUG this.displayRequest = new DisplayRequest(); #endif } /// <summary> /// Invoked […]