protected override void Dispose(bool disposing) { if (this.isDisposed) { return; } if (disposing) { if (this.defWndProcCallback != null) { this.defWndProcCallback = (WndProcInvoker)null; } if (this.baseWndProcCallback != null) { this.baseWndProcCallback = (WndProcInvoker)null; } } this.isDisposed = true; }
internal void SetDefWndProcCallback(WndProcInvoker callback) { this.defWndProcCallback = callback; }
internal void SetBaseWndProcCallback(WndProcInvoker callback) { this.baseWndProcCallback = callback; }