窗体中的滚动字幕
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了窗体中的滚动字幕相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
Timer组件 Lable控件的Left属性
实现代码:
private void button1_Click(object sender, EventArgs e) { bool validate = (button1.Text == "开始"); if (validate) { timer1.Start(); button1.Text = "暂停"; } else { timer1.Stop(); button1.Text = "开始"; } } private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Left < 0) label1.Left = this.Width; }
以上是关于窗体中的滚动字幕的主要内容,如果未能解决你的问题,请参考以下文章