public void show() { NLabel.Show(); NBox.Show(); MLabel.Show(); MBox.Show(); sceneImage.Show(); }
private void timer1_Tick(object sender, EventArgs e) { MLabel.Show(); if (second == 50) { second = 0; MLabel.Hide(); timer1.Stop(); } else { second++; String temp = Marquee.Substring(0, 1); Marquee = Marquee.Substring(1, Marquee.Length - 1) + Marquee_temp.Substring(0, 1); Marquee_temp = Marquee_temp.Substring(1, Marquee_temp.Length - 1) + temp; MLabel.Text = Marquee; } }