PerformanceCounter를 활용해서 시스템의 상황을 보자
*
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
ProgressBar1.Value = PerformanceCounter1.NextValue
ProgressBar2.Value = PerformanceCounter2.NextValue
ProgressBar3.Value = PerformanceCounter3.NextValue
Label2.Text = ProgressBar1.Value.ToString & "%"
Label3.Text = ProgressBar2.Value.ToString & "%"
Label5.Text = ProgressBar3.Value.ToString & "%"
End Sub
End Class

 

* PerformanceCounter : Windows 성능 카운터 구성 요소를 나타냅니다

* CPU, RAM의 사용량을 볼수있는 예제이다

* 다양한 속성의 변경을 통해 다양하게 활용할수 있다

* 추가로 다른 기능을 넣어보자

 

1.jpg

 

 

이 게시물을

댓글'1'

이 댓글을

공유하기

SEARCH

MENU NAVIGATION