本文实例讲述了C#获取运行平台系统信息的方法,主要可以实现C#获取系统启动经过的毫秒数,相连网络域名,系统启动经过的毫秒数等,并有关于ListView控件的相关操作。
具体的实现代码如下:
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace 获取系统环境和平台信息 { public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; private System.Windows.Forms.ListView listView1; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.ComponentModel.Container components = null; public Form1() { InitializeComponent(); } protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows 窗体设计器生成的代码 private void InitializeComponent() { this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.listView1 = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.SuspendLayout(); // button1 this.button1.Location = new System.Drawing.Point(48, 224); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(56, 32); this.button1.TabIndex = 4; this.button1.Text = "获取"; this.button1.Click += new System.EventHandler(this.button1_Click); // button2 this.button2.Location = new System.Drawing.Point(184, 224); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(56, 32); this.button2.TabIndex = 5; this.button2.Text = "退出"; this.button2.Click += new System.EventHandler(this.button2_Click); // // listView1 this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2}); this.listView1.GridLines = true; this.listView1.Location = new System.Drawing.Point(16, 24); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(256, 184); this.listView1.TabIndex = 6; this.listView1.View = System.Windows.Forms.View.Details; // columnHeader1 this.columnHeader1.Text = "属性"; this.columnHeader1.Width = 100; // columnHeader2 this.columnHeader2.Text = "值"; this.columnHeader2.Width = 175; // Form1 this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.listView1); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Name = "Form1"; this.Text = "获取系统环境和平台信息"; this.ResumeLayout(false); } #endregion [STAThread] static void Main() { Application.Run(new Form1()); } private void button2_Click(object sender, System.EventArgs e) { // 关闭当前窗体 this.Close(); } private void button1_Click(object sender, System.EventArgs e) { listView1.Items.Clear(); // 清除ListView控件中的项 ListViewItem listViewItem; try { // 加入计算机名 listViewItem = new ListViewItem("计算机名", 0); listViewItem.SubItems.Add(Environment.MachineName); listView1.Items.Add(listViewItem); // 加入当前平台名 listViewItem = new ListViewItem("当前平台名", 0); listViewItem.SubItems.Add(Environment.OSVersion.Platform.ToString()); listView1.Items.Add(listViewItem); // 加入平台版本号 listViewItem = new ListViewItem("平台版本号", 0); listViewItem.SubItems.Add(Environment.OSVersion.Version.ToString()); listView1.Items.Add(listViewItem); // 与系统相连的网络名 listViewItem = new ListViewItem("相连网络域名", 0); listViewItem.SubItems.Add(Environment.UserDomainName); listView1.Items.Add(listViewItem); // 系统目录路径 listViewItem = new ListViewItem("系统启动经过的毫秒数", 0); listViewItem.SubItems.Add(Environment.SystemDirectory ); listView1.Items.Add(listViewItem); // 系统当前时间 listViewItem = new ListViewItem("系统当前时间", 0); listViewItem.SubItems.Add(DateTime.Now.ToString()); listView1.Items.Add(listViewItem); // 系统启动后经过的毫秒数 listViewItem = new ListViewItem("系统启动经过的毫秒数", 0); listViewItem.SubItems.Add(Environment.TickCount.ToString()); listView1.Items.Add(listViewItem); } catch(Exception exc) { MessageBox.Show(exc.Message, "提示"); } } // 为避免编写的代码冗长,添加 AddItem 方法 public void AddItem(string sItem) { // 添加项 sItem 到 listView1 中 listView1.Items.Add(sItem); } } }
本文向大家介绍Python实现获取操作系统版本信息方法,包括了Python实现获取操作系统版本信息方法的使用技巧和注意事项,需要的朋友参考一下 最近,想在我的YouMoney(http://code.google.com/p/youmoney/)里面增加提取用户操作系统版本信息。比如windows用户,可能要返回Windows XP ,或者Windows 2003, 苹果用户应该返回Mac OS
本文向大家介绍C#实现学员信息管理系统,包括了C#实现学员信息管理系统的使用技巧和注意事项,需要的朋友参考一下 新手写一段学员信息管理系统,有代码冗余的情况请谅解,代码如下,请大神指点 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。
本文向大家介绍C++实现景区信息管理系统,包括了C++实现景区信息管理系统的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了C++实现景区信息管理系统的具体代码,供大家参考,具体内容如下 1.1 建立主程序应用菜单选项 主程序应用菜单选项包含所实现的所有功能,并且对选项采用数字标识进行选择,对其他错误输入可以进行判别,提示输入错误。 1.2 导游线路图的创建级景区分布图的输出 用邻接
问题内容: 我还无法找出如何使用PHP进行操作,并想尝试找出答案。 我注意到他们列出了,其中提供了有关浏览器的大量信息。他们是从中获取操作系统信息还是从别的东西获取操作系统信息?有没有我可以用来获取用户操作系统的API? 我知道他们是如何获得浏览器和IP的,但无法弄清操作系统部分! 问题答案: 下面的代码可以单独说明如何显示某人正在使用哪个操作系统。 它的作用是嗅探您的核心操作系统模型,例如作为我
本文向大家介绍python获取linux系统信息的三种方法,包括了python获取linux系统信息的三种方法的使用技巧和注意事项,需要的朋友参考一下 方法一:psutil模块 方法二:proc 方法三:subprocess 以上就是python获取linux系统信息的三种方法的详细内容,更多关于python获取linux系统信息的资料请关注呐喊教程其它相关文章!
我的Flutter应用程序支持多个平台(Android,IOS,Windows,Web),如何通过代码知道当前平台? 我需要根据平台更改一些变量和URL!