System.StackOverflowException 未处理 - C#、.NET
如何修复它。 看起来这个页面是专门针对这种错误的。
How to fix it.
It look like this page is dedicated to that kind of error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的函数将永远调用自身。
你需要让它停止调用自己。
在这种情况下,您需要将其
Invoke
到UI线程,而不是简单地再次调用自身:Your function is calling itself forever.
You need to make it stop calling itself.
In this case, you need to
Invoke
it to the UI thread instead of simply calling itself again:看来
InvokeRequired
为true
。这会导致无限递归。没有什么可以将其更改为 false。也许调用可以修复它?It appears that
InvokeRequired
istrue
. This causes unbounded recursion. There's nothing that will change it to false. Perhaps invoking would fix it?