如何设置 MessageBox 的自定义位置
我想在给定位置显示一个消息框。我不希望 MessageBox 覆盖并隐藏父窗体的一部分。有没有办法使用默认的 MessageBox 对象来指定自定义位置?
我在 VS 2008 中使用 C# 和 .Net Framework 3.5
I want to display a MessageBox at a given position. I don't want the MessageBox to overlay and hide a section of the parent form. Is there a way using the default MessageBox object to specify a custom location?
I'm using C# in VS 2008 with .Net Framework 3.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法更改消息框的属性。您必须创建自己的 form() 并将其用作消息框。这样你就可以定义它的一切(位置、大小等),
这是我所做的。
我这样初始化它:
You can not change the attributes of the message box. You will have to create your own form() and use it as a message box. This way you can define everything about it (position, size, etc)
Here's one that I've done.
And I Initialize it like this:
您可以从 From 创建自己的自定义消息框并将其显示为对话框,这样您就可以
设置启动位置。例如:
You can create own custom MessageBox from From and show it as DialogBox in this way you can
set the startup location. For example: