1

在 Form1 中,我在设计器中有 label2,我添加了一个代码:

public void lbl2(string text)
        {
            label2.Text = text;
        }

在新的班级顶部,我添加了:

private static AnimationEditor.Form1 fr1 = new AnimationEditor.Form1();

在新的类事件中,我像这样更新 label2.Text:

int ISampleGrabberCB.BufferCB(double sampleTime, IntPtr pBuffer, int bufferLen)
        {
            using (var bitmap = new Bitmap(_width, _height, _width * 3, PixelFormat.Format24bppRgb, pBuffer))
            {
                bitmap.RotateFlip(RotateFlipType.Rotate180FlipX);
                if (SaveToDisc)
                {
                    String tempFile = _outFolder + _frameId + ".bmp";
                    if (File.Exists(tempFile))
                    {
                        fr1.lbl2(_frameId.ToString();
                    }
                    else
                    {
                        bitmap.Save(Path.Combine(_outFolder, _frameId + ".bmp"));
                    }
                    _frameId++;
                }
                else
                {
                    if (Images == null)
                        Images = new List<Bitmap>();
                    Images.Add((Bitmap)bitmap.Clone());
                }
            }
            return 0;
        }

正在更新的线程是:

fr1.lbl2(_frameId.ToString();

现在我在新类的这一行以及公共函数的 label2.Text 上的 Form1 中使用了断点,我看到 label2 文本首先更改它的 0,然后是 1,然后是 2,依此类推。

但实际上,当我实时运行应用程序时,label2 会一直将其更改为 label2 的文本

这是当我单击它执行新类代码时的 Form1 按钮单击事件:

private void button5_Click(object sender, EventArgs e)
        {
            wmv = new Polkan.DataSource.WmvAdapter(@"d:\VIDEO0040.3gp", sf);
            wmv.SaveToDisc = true;
            wmv.Start();
            wmv.WaitUntilDone();
        }
4

1 回答 1

1

我认为快速的答案是将标签的引用传递给类:

private Label lbl;

public WmvAdapter(string file, string outFolder, Label label) {
  // yada-yada-yada
  lbl = label;
}

您的例程将更改为:

if (File.Exists(tempFile))
{
  lbl.Text = _frameId.ToString();
}

您的点击事件:

private void button5_Click(object sender, EventArgs e)
{
  wmv = new Polkan.DataSource.WmvAdapter(@"d:\VIDEO0040.3gp", sf, this.Label2);
  wmv.SaveToDisc = true;
  wmv.Start();
  wmv.WaitUntilDone();
}

更长的答案是让你的班级引发一个事件并让你的表单监听它。

让您的班级了解表格并不是最佳的编码实践。

于 2012-06-12T22:10:09.083 回答