如何使MessageBox.Show()在我的WPF应用程序中居中弹出?

14 浏览
0 Comments

如何使MessageBox.Show()在我的WPF应用程序中居中弹出?

我有一个700w x 300h的WPF应用程序,可以在我的大屏幕上随意拖动。

当我的应用程序执行以下代码时:

MessageBox.Show("抱歉,此功能尚未实现。");

消息框出现在屏幕中央,可能与应用程序本身甚至不相邻。

我该如何使我的消息框出现在应用程序的中央?

0
0 Comments

问题出现的原因:

- 在WPF应用程序中使用MessageBox.Show()方法弹出的消息框默认会在屏幕的左上角显示,而不是在应用程序的中间位置。

- 这是因为MessageBox类使用的是WinForms样式的消息框,而不是WPF样式的消息框。

解决方法:

- 创建一个MessageBoxEx助手类,该类使用WPF样式的消息框。

- 首先,需要引用System.Drawing命名空间。

- 然后,定义一个MessageBoxEx类,该类包含了多个重载的Show方法,用于显示消息框。

- 在每个Show方法中,调用Initialize方法进行初始化,并调用MessageBox类的相应Show方法显示消息框。

- 如果需要在应用程序的中间位置显示消息框,可以使用Show方法的重载,其中包含一个Window类型的owner参数,该参数指定了消息框的所有者窗口。

- 在Initialize方法中,判断_owner是否为null,如果不为null,则使用SetWindowsHookEx函数设置钩子,钩子函数是MessageBoxHookProc。

- MessageBoxHookProc函数是钩子函数的实现,当钩子被触发时,会调用CenterWindow函数将消息框居中显示在owner窗口的中间位置。

- CenterWindow函数中的代码用于计算消息框的位置,如果计算出的位置为负数,则设置位置为0,以确保消息框在屏幕上可见。

这是一个解决该问题的方法,但也某些情况下这种方法比较复杂,建议直接创建一个自定义的WPF窗口来模拟消息框,这样更简单和方便。

0
0 Comments

问题原因:MessageBox.Show()方法在WPF应用程序中弹出的位置默认是居中于屏幕,而不是居中于应用程序窗口。这可能导致弹出的消息框不在应用程序窗口的中心位置。

解决方法:可以采用以下两种方法来解决MessageBox.Show()方法弹出位置不正确的问题。

方法一:使用WindowStartupLocation属性

MessageBoxResult result = MessageBox.Show("Message", "Title", MessageBoxButton.OK);
Window window = new Window();
window.WindowStartupLocation = WindowStartupLocation.CenterOwner;
window.Owner = Application.Current.MainWindow;
window.ShowDialog();

方法二:自定义消息框窗口

MessageBoxResult result = CustomMessageBox.Show("Message", "Title", MessageBoxButton.OK);

自定义消息框窗口的代码如下:

public class CustomMessageBox : Window
{
    public static MessageBoxResult Show(string messageBoxText, string caption, MessageBoxButton button)
    {
        CustomMessageBox messageBox = new CustomMessageBox();
        messageBox.Title = caption;
        messageBox.Content = messageBoxText;
        switch (button)
        {
            case MessageBoxButton.OK:
                messageBox.AddOkButton();
                break;
            case MessageBoxButton.OKCancel:
                messageBox.AddOkButton();
                messageBox.AddCancelButton();
                break;
            case MessageBoxButton.YesNo:
                messageBox.AddYesButton();
                messageBox.AddNoButton();
                break;
            case MessageBoxButton.YesNoCancel:
                messageBox.AddYesButton();
                messageBox.AddNoButton();
                messageBox.AddCancelButton();
                break;
        }
        messageBox.ShowDialog();
        return messageBox.Result;
    }
    private void AddOkButton()
    {
        Button okButton = new Button();
        okButton.Content = "OK";
        okButton.Click += (sender, e) =>
        {
            Result = MessageBoxResult.OK;
            Close();
        };
        // Add okButton to the window
    }
    private void AddCancelButton()
    {
        Button cancelButton = new Button();
        cancelButton.Content = "Cancel";
        cancelButton.Click += (sender, e) =>
        {
            Result = MessageBoxResult.Cancel;
            Close();
        };
        // Add cancelButton to the window
    }
    private void AddYesButton()
    {
        Button yesButton = new Button();
        yesButton.Content = "Yes";
        yesButton.Click += (sender, e) =>
        {
            Result = MessageBoxResult.Yes;
            Close();
        };
        // Add yesButton to the window
    }
    private void AddNoButton()
    {
        Button noButton = new Button();
        noButton.Content = "No";
        noButton.Click += (sender, e) =>
        {
            Result = MessageBoxResult.No;
            Close();
        };
        // Add noButton to the window
    }
    public MessageBoxResult Result { get; set; }
}

以上两种方法都可以解决MessageBox.Show()方法弹出位置不正确的问题,可以根据实际情况选择使用哪种方法来实现消息框在应用程序窗口中心位置弹出。

0
0 Comments

问题的原因是MessageBox.Show()在WPF应用程序中默认会显示在屏幕的中央,而不是显示在应用程序窗口的中央。解决方法是通过添加对System.Windows.Forms和System.Drawing的引用,并在窗口类中实现System.Windows.Forms.IWin32Window接口。

首先,需要在窗口类中添加对System.Windows.Forms.IWin32Window接口的实现。代码如下所示:

public partial class YourWPFWindow : Window, System.Windows.Forms.IWin32Window
{
    public IntPtr Handle
    {
        get { return new WindowInteropHelper(this).Handle; }
    }
}

然后,可以使用MessageBoxEx来弹出消息框,并使其显示在应用程序窗口的中央。代码如下所示:

MessageBoxEx.Show(this, "Message");

通过以上步骤,消息框将出现在应用程序窗口的中央。

0