不能破坏我的按钮标签

时间:2013-06-22 10:42:05

标签: c# forms label dispose

我正在为公司开发一个“缓存图像生成器” 此表单的目标是预先计算所有可能的按钮方案 它创建了几个自定义按钮,拍摄快照,清除所有内容并重做,直到它们全部尝试完毕。

我的问题是我无法销毁自定义按钮内的标签 我的自定义按钮工作正常,我可以生成第一个图像 因为我使用索引作为标签名称的最后一部分,所以第二轮将由于现有的同名项目而失败,我相信。

这就是我试图摧毁一切的方式:

foreach (my_button b in this.wrapper.Controls.OfType<my_button>())
{
    b.resume_layout();
    b.show();
}
this.PerformLayout();
bmp = new Bitmap(this.wrapper.Width, this.wrapper.Height);
this.wrapper.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
a.result = bmp;
cc = this.wrapper.Controls;
this.wrapper.Controls.Clear();
foreach (Control C in cc)
    C.Dispose();
cc = null;
GC.Collect();

这是my_button的自定义Dispose处理程序:

    new public void Dispose()
    {
        this.Dispose(true);
    }

    protected override void Dispose(bool disposing)
    {
        this.currency_label.Dispose();
        this.name_label.Dispose();
        this.price_label.Dispose();
        this.currency_label = this.name_label = this.price_label = null;
        this.BackgroundImage = null;
        this.Controls.Clear();
        base.Dispose(disposing);
    }

我相信这是一个非破坏性的麻烦,因为我随机得到这个:
Dispose()调用标签上的Illegal cross-thread operation: Control 'control name' accessed from a thread other than the thread it was created on.

提前感谢任何帮助。

- 编辑 -

我解决了。
问题是我的mooremachine框架上的错误调用设置了Visible = false的所有内容 请删除此问题,因为它没用。

1 个答案:

答案 0 :(得分:0)

由于跨线程调用异常的原因,这是因为您错误地实现了Dispose(bool)。可以从终结器方法调用Dispose(bool),并且未指定调用线程,例如它可以来自任何线程。

关于您添加的控件,您无需添加额外的dispose方法。子控件自动处理。

http://msdn.microsoft.com/en-us/library/a4zkb31d.aspx

  

Control.Dispose方法(布尔值)

     

释放Control及其子级使用的非托管资源   控制并可选择释放托管资源。

无论如何,如果位图的所有者是my_button并且没有其他对象将使用相同的位图,您可能希望处置自己的位图。你可以这样做:

protected override void Dispose(bool disposing)
{
    if (disposing) {
         var backgroundImage = this.BackgroundImage;
         this.BackgroundImage = null;
         backgroundImage.Dispose();
    }
    base.Dispose(disposing);
}

无需重新声明Dispose()方法。