如何设置 MessageBox 的自定义位置

发布于 2024-11-02 06:31:30 字数 131 浏览 1 评论 0原文

我想在给定位置显示一个消息框。我不希望 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不在是我 2024-11-09 06:31:30

您无法更改消息框的属性。您必须创建自己的 form() 并将其用作消息框。这样你就可以定义它的一切(位置、大小等),

这是我所做的。

public partial class NotifyForm : Form
    {
        public NotifyForm(string message, string title)
        {
            InitializeComponent();
            this.StartPosition = FormStartPosition.CenterScreen;// Or wherever 

            lblMessage.Text = "\r\n" + message;
            this.Text =  title;
        }

        private void btnOK_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }

我这样初始化它:

NotifyForm frm = new NotifyForm("Added item: " + txtAddAcc.Text + " to Accessibility Categories list.", "Add Item!");
frm.Show();

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.

public partial class NotifyForm : Form
    {
        public NotifyForm(string message, string title)
        {
            InitializeComponent();
            this.StartPosition = FormStartPosition.CenterScreen;// Or wherever 

            lblMessage.Text = "\r\n" + message;
            this.Text =  title;
        }

        private void btnOK_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }

And I Initialize it like this:

NotifyForm frm = new NotifyForm("Added item: " + txtAddAcc.Text + " to Accessibility Categories list.", "Add Item!");
frm.Show();
眼睛会笑 2024-11-09 06:31:30

您可以从 From 创建自己的自定义消息框并将其显示为对话框,这样您就可以
设置启动位置。例如:

   var form = new Form
                       {
                           StartPosition = FormStartPosition.Manual, 
                           ShowInTaskbar = false,
                           Location = new Point(100,100)
                       };
        form.ShowDialog();

You can create own custom MessageBox from From and show it as DialogBox in this way you can
set the startup location. For example:

   var form = new Form
                       {
                           StartPosition = FormStartPosition.Manual, 
                           ShowInTaskbar = false,
                           Location = new Point(100,100)
                       };
        form.ShowDialog();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文