반응형

*C# PC 사용 시간 얻어 오기 예제...

 

Main

 

- 사용한 컨트롤 : Button 1개, Label 1개

 

전체 소스 코드 

From1.cs

 

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 CSharp_SystemUseTime
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {

                using (PerformanceCounter pc = new PerformanceCounter("System", "System Up Time"))
                {
                    pc.NextValue();
                    label1.Text = TimeSpan.FromSeconds(pc.NextValue()).ToString();
                }

            }

            catch
            {
                label1.Text = "00:00:00";
            }

        }
    }
}

 

 

 

*예제 결과

 

 

https://kdsoft-zeros.tistory.com/195

 

[VBNET] PC 사용 시간 얻어 오기 (PC Use Time)

*C# PC 사용 시간 얻어 오기 예제... - 사용한 컨트롤 : Button 1개, Label 1개 전체 소스 코드 From1.cs Public Class Form1 Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.Even..

kdsoft-zeros.tistory.com

 

반응형

+ Recent posts