当我不添加任何引用时,我的应用程序将从进程列表中删除,但是当我wmplib.dll
在项目中添加引用时,按下退出按钮不会将其从 Windows Mobile 设备上的进程列表中删除。
我在我的项目中使用了这段代码:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd562692%28v=vs.85%29.aspx
private void Exit_Button_Click(object sender, EventArgs e)
{
Application.Exit();
}
程序.cs 文件:
using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
namespace radiotest
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
Application.Run(new Form1());
}
}
}