Axiom.Demos.DemoConfigDialog.tmrRotator_Tick C# (CSharp) 메소드

tmrRotator_Tick() 개인적인 메소드

private tmrRotator_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
		private void tmrRotator_Tick( object sender, EventArgs e )
		{
			lstDemos.SelectedIndex = ( lstDemos.SelectedIndex + 1 ) % ( lstDemos.Items.Count );
			this.tmrRotator.Start();
		}