Win32Exception Not enough storage is available to process this command

后端 未结 4 1900
北恋
北恋 2020-11-29 05:38

Through my automated crash collection for MaxTo I got the following crash report:

V8.12.0.0 - System.ComponentModel.Win32Exception - :Void UpdateLayered():0
         


        
4条回答
  •  爱一瞬间的悲伤
    2020-11-29 06:22

    The problem probably dones't lie in your WndProc - the reason you see it in your call stacks is because pretty much everything GUI-related on Windows go through the WIN32 window procedure. Overriding it in your control simply gives you a hook point to process low-level stuff before higher-level .NET framework processing is done.

    This is going to be a complete shot in the dark, but perhaps this post could be relevant? - probably not with those stack traces, though.

提交回复
热议问题