参照を追加しないとアプリがプロセス リストから削除されますが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();
}
Program.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());
}
}
}