*C# PC 사용 시간 얻어 오기 예제...
- 사용한 컨트롤 : 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
'C# Programming' 카테고리의 다른 글
[C#] Encoding Class - 유니코드 문자열 존재 여부 (0) | 2020.04.28 |
---|---|
[C#] [API] Form - Animate (0) | 2020.04.27 |
[C#] [API] mciSendString - WAV 파일 재생 (0) | 2020.04.20 |
[C#] Sendkeys - 화면 캡쳐 (Screen Capture) (0) | 2020.04.15 |
[C#] 선택된 프로세스 죽이기 (Kill Process) (0) | 2020.04.13 |