CCT.NUI.WPFSamples.PinCode.HandInterfaceWindow.textTimer_Tick C# (CSharp) Method

textTimer_Tick() private method

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