machine2014arcade.Game.ScreenMessage.tmrMvt_Tick C# (CSharp) Method

tmrMvt_Tick() private method

private tmrMvt_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void tmrMvt_Tick(object sender, EventArgs e)
        {
            lblText.Location = new Point(lblText.Location.X, lblText.Location.Y - 25);
            if (lblText.Location.Y < 300)
               this.Done();
        }