处理开始时在 c#.net 中打开新窗口
我正在 c#.net 中开发一个项目,一个密码生成器。我的问题是,当生成密码时,会打开一个新的窗口窗体并显示“请稍候”。在处理完成之前,我的主表单处于非活动状态。我已经使用了 showdialog,它可以工作,但它会停止我的主表单处理。帮帮我,我能做什么?
I'm working on a project in c#.net, a password generator. My problem is that when the password is generated a new window form opens and shows "please wait". My main form is inactive until processing is complete. I already use showdialog, which works, but it stops my main form processing. Help me, what can I do ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有看到任何代码,那么提供帮助有点困难..但我为您制作了整个流程的一些工作示例:
希望它对您有帮助..
It is a bit difficult to help if don't see any code.. but I make some working sample for you with entire flow:
Hope it help you..
使用
Show()
而不是ShowDialog()
Use
Show()
instead ofShowDialog()