1

我在richTextBox 中更新了两个变量,因为我不希望每次我对richTextbox 执行Clear() 时它都移动到新行。但是在richextBox中每隔几秒钟清除它时就像闪烁一样。在 Clear() 之前我使用过:richTextBox1.Text = ""; 但它给出了相同的结果。

有什么办法可以避免吗?

private void timer1_Tick(object sender, EventArgs e)
        {
            richTextBox1.Clear();
            memUsage = theMemCounter.NextValue();
            label1.Text = memUsage.ToString();
            Logger.Write("Memory Usage   " + memUsage.ToString());
            AppendText(richTextBox1, "Memory Usage   " + memUsage.ToString() + Environment.NewLine, Color.Red);
            cpuUsage = this.theCPUCounter.NextValue();
            label2.Text = cpuUsage.ToString();
            Logger.Write("Cpu Usage   " + this.cpuUsage.ToString());
            AppendText(richTextBox1, "Cpu Usage   " + cpuUsage.ToString() + Environment.NewLine, Color.Blue);
            Values.Add(cpuUsage);
            isProcessRunning();
            if (alreadyRun == true)
            {
                processValues.Add(cpuUsage);
            }

        }

也许我应该使用其他东西然后 richTextBox ?我使用richTextBox 为里面的文本着色。

这是 AppendText 函数:

public  void AppendText( RichTextBox box, string text, Color color)
        {
            box.SelectionStart = box.TextLength;
            box.SelectionLength = 0;

            box.SelectionColor = color;
            box.AppendText(text);
            box.SelectionColor = box.ForeColor;
        } 
4

0 回答 0