示例#1
0
 internal void releaseWndProc()
 {
     if (this.mNativeDocWindow != null)
     {
         this.mNativeDocWindow.ReleaseHandle();
         this.mNativeDocWindow = null;
     }
 }
示例#2
0
        internal void setupWndProc()
        {
            if (this.mNativeDocWindow != null)
            {
                this.mNativeDocWindow.ReleaseHandle();
            }

            this.mNativeDocWindow         = new HandleWndProc();
            this.mNativeDocWindow.theform = this;
            this.mNativeDocWindow.AssignHandle(this.site.DocumentHandle);
        }
示例#3
0
 internal void releaseWndProc()
 {
     if (this.mNativeDocWindow != null)
     {
         this.mNativeDocWindow.ReleaseHandle();
         this.mNativeDocWindow = null;
     }
 }
示例#4
0
        internal void setupWndProc()
        {

            if (this.mNativeDocWindow != null)
            {
                this.mNativeDocWindow.ReleaseHandle();
            }

            this.mNativeDocWindow = new HandleWndProc();
            this.mNativeDocWindow.thecontrol = this;
            this.mNativeDocWindow.AssignHandle(this.site.DocumentHandle);
        }