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.
根据 MSDN:
Control.Disposing 属性 获取一个值,该值指示基 Control 类是否处于释放过程中。
但是当我检查时,控件的 Disposing 属性始终为 false(在 Dispose() 方法本身内部)。
这个 Disposing 属性什么时候会变成真的?
Control.Disposing在被调用后变为真Dispose(),在它被处理后它再次变为假并IsDisposed变为真。
Control.Disposing
Dispose()
IsDisposed