OsDevKit.UI.Output.timer1_Tick C# (CSharp) Méthode

timer1_Tick() private méthode

private timer1_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Résultat void
        private void timer1_Tick(object sender, EventArgs e)
        {
            if(Global.OutPut != buff)
            {
                richTextBox1.Text = Global.OutPut;

                buff = Global.OutPut;
            }
        }