0

我有一个窗体 (Form1),当单击它时,我想在线程中打开另一个窗体 (form2)。

我想在一个线程中打开它,因为当它启动时,我会读取它并为 10k+ 行长文件的语法着色,这大约需要 5 或 6 分钟。

我的问题是我不知道“正确”的方法。我已经找到了如何做到这一点并且它工作正常,但我希望能够有一个进度条告诉我 Form2 的处理进度。(可能带有后台工作对象)

这是我的布局

Form1 有一个 RichTextBoxes 和一个按钮,单击该按钮,它会在另一个线程中打开一个表单,为 form1 的 rtb 中的文本着色。

Form2 也有一个 Rtb,这个 rtb 有一个 ProcessAllLines 方法,它处理行并完成我想在另一个线程中完成的工作。

这就是为什么我认为我遇到了困难。当表单等待加载时,文本框正在完成工作。

这是我打开 Form2 的方法:

    private void button1_Click(object sender, EventArgs e)
    {
        ColoringThread colorer = new ColoringThread(this.m_bruteView.Text);
        Thread theThread = new Thread(new ThreadStart(colorer.OpenColorWindow));
        theThread.Start();
    }

    public class ColoringThread
    {
        string text;
        public ColoringThread(string initText)
        {
            text = initText;
        }
        public void OpenColorWindow()
        {
            Form2 form2 = new Form2(text);
            form2.ShowDialog();
        }
    };

以下是 form2 的工作方式:

    string initText;
    public Form2(string initTextInput)
    {
        initText = initTextInput;
        InitializeComponent();
    }


private void InitializeComponent()
    {
        this.m_ComplexSyntaxer = new ComplexSyntaxer.ComplexSyntaxer();
        this.SuspendLayout();
        // 
        // m_ComplexSyntaxer
        // 
        this.m_ComplexSyntaxer.Dock = System.Windows.Forms.DockStyle.Fill;
        this.m_ComplexSyntaxer.Location = new System.Drawing.Point(0, 0);
        this.m_ComplexSyntaxer.Name = "m_ComplexSyntaxer";
        this.m_ComplexSyntaxer.Size = new System.Drawing.Size(292, 273);
        this.m_ComplexSyntaxer.TabIndex = 0;
        this.m_ComplexSyntaxer.Text = initText;
        this.m_ComplexSyntaxer.WordWrap = false;

        // THIS LINE DOES THE WORK
        this.m_ComplexSyntaxer.ProcessAllLines();
        // 
        // Form2
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(292, 273);
        this.Controls.Add(this.m_ComplexSyntaxer);
        this.Name = "Form2";
        this.Text = "Form2";
        this.ResumeLayout(false);
    }

这是完成工作的地方:

    public void ProcessAllLines()
    {
        int nStartPos = 0;
        int i = 0;
        int nOriginalPos = SelectionStart;
        while (i < Lines.Length)
        {
            m_strLine = Lines[i];
            m_nLineStart = nStartPos;
            m_nLineEnd = m_nLineStart + m_strLine.Length;
            m_nLineLength = m_nLineEnd - m_nLineStart;

            ProcessLine(); // This colors the current line!
            i++;

            nStartPos += m_strLine.Length + 1;
        }
        SelectionStart = nOriginalPos;
    }

Sooo,打开这个form2并让它向Form1报告进度以显示给用户的“正确”方式是什么?(我问是因为我被告知这不是正确的做法,我显然会受到“跨线程”违规?)

4

2 回答 2

2

我想在一个线程中打开它,因为当它启动时,我会读取它并为 10k+ 行长文件的语法着色,这大约需要 5 或 6 分钟。

为什么不在单独的线程中读取数据,然后将 UI 本身与第一个表单保持在同一个线程上?

根据我的经验,如果您只使用一个线程进行 UI 操作,它会使生活变得更加简单。

至于你应该如何启动一个新线程来读取数据,有多种选择:

  • 你可以使用BackgroundWorker; 这可能会使进度报告更简单。有关详细信息,请参阅MSDN 文章
  • 直接新建Thread并启动
  • 使用线程池线程ThreadPool.QueueUserWorkItem
  • 如果您使用的是 .NET 4,请使用Task.Factory.StartNew
于 2012-08-17T19:28:15.990 回答
1

在我看来,另一种形式不需要在另一个显式线程中运行。

当然,您希望在另一个线程(或后台工作人员)中完成长时间的工作,但您只想调用另一个表单,而另一个表单将在另一个线程(或后台工作人员)中执行任务。

于 2012-08-17T19:28:29.797 回答