简体   繁体   中英

C#: Creating SystemInfo dialog similar to Visual Studio Help | System Info

Within Visual Studio, if you click on Help | About Microsoft Visual Studio | System Info, you get a tree view with system info parameters.

I am looking at the System.Management.ManagementObjectSearcher class to create a similar dialog but is there a .NET API one can call to bring up a similar window with such info?

您在寻找TreeView控件吗?

It's a one-liner:

    private void SysInfo_Click(object sender, EventArgs e) {
        System.Diagnostics.Process.Start("msinfo32.exe");
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM