在Windows Mobile应用程序中使用引用会阻止应用程序关闭进程

时间:2012-08-16 17:24:56

标签: c# windows-mobile

当我不添加任何引用时,我的应用程序将从进程列表中删除,但是当我在项目中添加对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());
        }
    }
}

0 个答案:

没有答案