fix: 收敛旧模块资源释放与诊断

This commit is contained in:
2026-08-15 10:13:08 +08:00
parent 222ae3c08a
commit c49015d390
60 changed files with 4218 additions and 409 deletions
+7 -3
View File
@@ -13,9 +13,13 @@
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
if (disposing)
{
components.Dispose();
ReleaseResourcesForDispose();
if (components != null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
@@ -280,4 +284,4 @@
private DevExpress.XtraEditors.SimpleButton btnShowAll;
private DevExpress.XtraEditors.SimpleButton btnRefresh;
}
}
}