“Error Creating Window Handle”

前端 未结 9 1750
忘了有多久
忘了有多久 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 05:08

    I faced this exception while adding controls in to the panel, Because in panel child controls not cleared. If dispose the child controls in panel then bug fixed.

    For k = 1 To Panel.Controls.Count
        Panel.Controls.Item(0).Dispose()
    Next
    

提交回复
热议问题