C#Process.GetProcesses没有找到进程,除非它们被最小化

时间:2014-03-07 21:39:34

标签: c# .net

我正在尝试获取当前正在运行的进程列表,它只列出最小化的进程列表?我尝试重新启动计算机,但仍然没有。我在另一台计算机上尝试了代码,它列出了最小化,最大化和恢复过程。

我甚至尝试过Process.GetProcessesByName(String),它只会在最小化时列出进程。

下面是我用来列出流程的代码。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;

namespace Find_Proc
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            Process[] proc = Process.GetProcesses();
            foreach (Process process in proc)
            {
                if (!String.IsNullOrEmpty(process.MainWindowTitle))
                {
                    listBox1.Items.Add(process.MainWindowTitle);
                }
            }
        }
    }
}

提前谢谢。

1 个答案:

答案 0 :(得分:0)

看来问题的计算机是基于Windows的。我让客户发回计算机,我重新安装了Windows,我没有再看到这个问题。