在c#窗体应用中如何实现在timer控件中写入labe空中显示的文字左右移动
1个回答
展开全部
private void 字幕(string 内容)
{ if (!移动字幕.Visible)移动字幕.Visible = true; if (内容 != "")移动字幕.Text = 内容; 移动字幕.Left = 移动字幕.Left - 1; if (移动字幕.Right < 0) 移动字幕.Left = this.Width; }
private void 定时_Tick(object sender, EventArgs e)
{
new Thread(delegate() { 移动字幕.BeginInvoke(new Action<string>((字符串) => 字幕(字符串)), ""); }).Start();
}
}
{ if (!移动字幕.Visible)移动字幕.Visible = true; if (内容 != "")移动字幕.Text = 内容; 移动字幕.Left = 移动字幕.Left - 1; if (移动字幕.Right < 0) 移动字幕.Left = this.Width; }
private void 定时_Tick(object sender, EventArgs e)
{
new Thread(delegate() { 移动字幕.BeginInvoke(new Action<string>((字符串) => 字幕(字符串)), ""); }).Start();
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询