CCT.NUI.WPFSamples.PinCode.HandInterfaceWindow.textTimer_Tick C# (CSharp) 메소드

textTimer_Tick() 개인적인 메소드

private textTimer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        void textTimer_Tick(object sender, EventArgs e)
        {
            this.textBlock.Text += this.secretText[currentTextIndex++];
            if (this.currentTextIndex >= this.secretText.Length - 1)
            {
                this.textTimer.Stop();
            }
        }