在 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();
}