C# 클래스 ARCed.Controls.HighPrecisionTimer

Represents the Windows multimedia timer.
상속: IComponent
파일 보기 프로젝트 열기: borisblizzard/arcreator

공개 메소드들

메소드 설명
Dispose ( ) : void

Frees timer resources.

HighPrecisionTimer ( IContainer container ) : System

Initializes a new instance of the Timer class with the specified IContainer.

Start ( ) : void

Starts the timer.

Stop ( ) : void

Stops timer.

비공개 메소드들

메소드 설명
HighPrecisionTimer ( ) : System

Initialize class.

Initialize ( ) : void
OnDisposed ( EventArgs e ) : void
OnStarted ( EventArgs e ) : void
OnStopped ( EventArgs e ) : void
OnTick ( EventArgs e ) : void
TimerOneShotEventCallback ( int id, int msg, int user, int param1, int param2 ) : void
TimerPeriodicEventCallback ( int id, int msg, int user, int param1, int param2 ) : void
timeGetDevCaps ( TimerCaps &caps, int sizeOfTimerCaps ) : int
timeKillEvent ( int id ) : int
timeSetEvent ( int delay, int resolution, TimeProc proc, int user, int mode ) : int

메소드 상세

Dispose() 공개 메소드

Frees timer resources.
public Dispose ( ) : void
리턴 void

HighPrecisionTimer() 공개 메소드

Initializes a new instance of the Timer class with the specified IContainer.
public HighPrecisionTimer ( IContainer container ) : System
container IContainer /// The IContainer to which the Timer will add itself. ///
리턴 System

Start() 공개 메소드

Starts the timer.
/// The timer has already been disposed. /// /// The timer failed to start. ///
public Start ( ) : void
리턴 void

Stop() 공개 메소드

Stops timer.
/// If the timer has already been disposed. ///
public Stop ( ) : void
리턴 void