我有一个Windows应用程序,我从db获取数据并将其绑定到标签。我正在使用计时器并滚动标签,当字符串大约150个字符时,这可以正常工作,但是当我有大约30000个字符的字符串时,它就会挂掉应用程序。
lblMsg1.AutoEllipsis = true;
private void timer1_Tick(object sender, EventArgs e)
{
try
{
if (lblMsg1.Right <= 0)
{
lblMsg1.Left = this.Width;
}
else
lblMsg1.Left = lblMsg1.Left - 5;
this.Refresh();
}
catch (Exception ex)
{
}
}
public void bindData()
{
lblMsg.Text = "Some Large text";
}
public void Start()
{
try
{
timer1.Interval = 150;
timer1.Start();
}
catch (Exception ex)
{
Log.WriteException(ex);
}
}
为什么这与字符串长度有关并导致应用程序挂起?提前谢谢。
答案 0 :(得分:1)
使用TextBox并根据需要设置ScrollBars,MultiLine和WordWrap属性,而不是Label。要禁用TextBox的编辑(并因此使其行为类似于标签),请使用ReadOnly属性。
答案 1 :(得分:1)
我猜你是想创建一个新闻自动收报机? 我不确定标签是否设计用于容纳如此大的字符串。 请使用图片框并更新您的代码。
在表单类中定义两个变量。一个用于保持文本偏移,另一个用于保存图片框的图形对象。像这样:
private float textoffset = 0;
System.Drawing.Graphics graphics = null;
在onload表单中执行以下操作:
private void Form1_Load(object sender, EventArgs e)
{
textoffset = (float)pictureBox1.Width; // Text starts off the right edge of the window
pictureBox1.Image = new Bitmap(pictureBox1.Width, pictureBox1.Height);
graphics = Graphics.FromImage(pictureBox1.Image);
}
您的计时器应如下所示:
private void timer1_Tick(object sender, EventArgs e)
{
graphics.Clear(BackColor);
graphics.DrawString(newstickertext, new Font(FontFamily.GenericMonospace, 10, FontStyle.Regular), new SolidBrush(Color.Black), new PointF(textoffset, 0));
pictureBox1.Refresh();
textoffset = textoffset-5;
}