Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果 XtraGrid 元素是在代码中创建的,我应该处置它吗(例如:如果我在 LayoutView 中添加 EmptySpaceItem)?还是 GC 收集它?
基本上,不会。GC 会为您执行此操作。
因为 GridControl 本身就是一个控件,所以它存储在表单Controls集合中。它将被处理,然后表单被处理。
Controls
XtraGrid 本身负责处理网格中的任何对象。
如果您要向 XtraGrid 添加自定义事件/属性,则当您有责任清理时调用处置。但在您的情况下,情况并非如此。
垃圾收集器将为您做任何必要的工作 :-) 如果您的程序不工作或内存变空,他会搜索不可用的对象并删除它们。