Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 internal void SetDefWndProcCallback(WndProcInvoker callback)
 {
     this.defWndProcCallback = callback;
 }
Esempio n. 3
0
 internal void SetBaseWndProcCallback(WndProcInvoker callback)
 {
     this.baseWndProcCallback = callback;
 }