运行 Windows 移动应用程序时出错
Error when running Windows Mobile application
我正在为 Windows Mobile 编写一个 hello world 程序,只是为了好玩。 (我知道这是一个死平台)
这是我的代码:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace HelloWorld
{
class HelloWorldForm : System.Windows.Forms.Form
{
Label lblHello;
Button btnClose;
public HelloWorldForm()
{
this.Text = "Hello, world!";
btnClose = new Button();
lblHello = new Label();
btnClose.Click += new EventHandler(btnClose_Click);
btnClose.Text = "Close";
btnClose.Location = new Point (10, 100);
btnClose.Size = new Size(200, 50);
lblHello.Text = "Hello, world! - From the Tectra team";
lblHello.Location = new Point(10, 10);
lblHello.Size = new Size(200, 50);
SuspendLayout();
this.Controls.Add(lblHello);
this.Controls.Add(btnClose);
ResumeLayout(false);
}
void btnClose_Click(object sender, EventArgs args)
{
this.Close();
}
static void Main()
{
HelloWorldForm helloworld = new HelloWorldForm();
Application.Run( helloworld );
}
}
}
我在 SDK 命令提示符中使用了 C# 编译器。当我 运行 exe 它在 Windows 10 中工作正常。当我 运行 它在 Windows 移动模拟器中时,我得到这个错误:
File or assembly name 'System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089', or one of its dependencies, was not found.
我需要更新版本的 .NET Compact Framework 吗?欢迎任何帮助,因为我对这个问题感到非常不安。谢谢!
您需要的是 VS 2008(无拼写错误)和 Windows Mobile 6.x SDKs 安装在您的机器上。
Visual Studio 的较新版本不支持紧凑框架
我找到了一种无需 VS 2008 即可运行的方法。我使用了 SDK 命令提示符。我在这里找到了命令:https://www.codeproject.com/Articles/31861/Windows-Mobile-Development-Without-Visual-Studio。我的应用程序在模拟器中运行良好。谢谢您的帮助!
我正在为 Windows Mobile 编写一个 hello world 程序,只是为了好玩。 (我知道这是一个死平台)
这是我的代码:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace HelloWorld
{
class HelloWorldForm : System.Windows.Forms.Form
{
Label lblHello;
Button btnClose;
public HelloWorldForm()
{
this.Text = "Hello, world!";
btnClose = new Button();
lblHello = new Label();
btnClose.Click += new EventHandler(btnClose_Click);
btnClose.Text = "Close";
btnClose.Location = new Point (10, 100);
btnClose.Size = new Size(200, 50);
lblHello.Text = "Hello, world! - From the Tectra team";
lblHello.Location = new Point(10, 10);
lblHello.Size = new Size(200, 50);
SuspendLayout();
this.Controls.Add(lblHello);
this.Controls.Add(btnClose);
ResumeLayout(false);
}
void btnClose_Click(object sender, EventArgs args)
{
this.Close();
}
static void Main()
{
HelloWorldForm helloworld = new HelloWorldForm();
Application.Run( helloworld );
}
}
}
我在 SDK 命令提示符中使用了 C# 编译器。当我 运行 exe 它在 Windows 10 中工作正常。当我 运行 它在 Windows 移动模拟器中时,我得到这个错误:
File or assembly name 'System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089', or one of its dependencies, was not found.
我需要更新版本的 .NET Compact Framework 吗?欢迎任何帮助,因为我对这个问题感到非常不安。谢谢!
您需要的是 VS 2008(无拼写错误)和 Windows Mobile 6.x SDKs 安装在您的机器上。 Visual Studio 的较新版本不支持紧凑框架
我找到了一种无需 VS 2008 即可运行的方法。我使用了 SDK 命令提示符。我在这里找到了命令:https://www.codeproject.com/Articles/31861/Windows-Mobile-Development-Without-Visual-Studio。我的应用程序在模拟器中运行良好。谢谢您的帮助!