“Error Creating Window Handle”

前端 未结 9 1745
忘了有多久
忘了有多久 2020-12-05 04:28

We\'re working on a very large .NET WinForms composite application - not CAB, but a similar home grown framework. We\'re running in a Citrix and RDP environment running on

9条回答
  •  伪装坚强ぢ
    2020-12-05 04:56

    I had this error when I subclassed NativeWindow and called CreateHandler manually. The problem was I forgot to add base.WndProc(m) in my overriden version of WndProc. It caused the same error

提交回复
热议问题