如果传递了长消息,则根本不会显示WPF MessageBox

时间:2018-11-09 18:09:22

标签: wpf messagebox

我遇到了一些根本没有显示带有错误消息的MessageBox的情况。经过更深入的研究,我能够将问题范围缩小到以messageBoxText传递非常长的字符串的情况。

在这种情况下,调用MessageBox.Show不会显示任何内容,返回MessageBoxResult.No,并且在大多数情况下,Output窗口中会显示一条消息,提示The thread 0xHEXNUMBER has exited with code 0 (0x0)。对我来说,这种方法默默地失败了。

这很奇怪-WPF是一项非常成熟的技术,我希望这段代码可以运行according to spec或引发某些异常(例如OutOfMemory,StackOverflowException)。我已经调试了程序,没有抛出任何异常。

没有显示MessageBox的根本原因是什么?是否有一些简单的方法可以调试此类事件(因为不会引发或记录异常)。

> messageBoxText的长度限制是什么,它取决于什么(我可以凭经验在我的计算机上进行检查,但是最多只能确定一个OS / platform / .NET Framework版本)?

复制:

这是演示该问题的代码(可以与Visual Studio中的标准WPF应用程序模板一起使用)。

MainWindow.xaml:

<Window x:Class="LongMessageInMessageBox.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<Grid>
  <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
  </Grid.RowDefinitions>
  <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
  </Grid.ColumnDefinitions>

  <Button Grid.Row="0" Grid.Column="0" Click="ShortMessage_Clicked">Short Message</Button>
  <Button Grid.Row="1" Grid.Column="0" Click="LongMessage_Clicked">Long Message</Button>

</Grid>

MainWindow.xaml.cs:

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace LongMessageInMessageBox
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        /// Method which shows that displaying short message works correctly
        private void ShortMessage_Clicked(object sender, RoutedEventArgs e)
        {
            Console.WriteLine("ShortMessage_Clicked");
            var result = MessageBox.Show("Short Message");
            Console.WriteLine(result);
        }

        /// Method which shows that displaying a long message does not work
        private void LongMessage_Clicked(object sender, RoutedEventArgs e)
        {
            Console.WriteLine("LongMessage_Clicked");
            var longTextBuilder = new System.Text.StringBuilder(10000);
            longTextBuilder.Append("Long Message \n");
            for (int i = 1; i <= 100000; i++)
            {
                longTextBuilder.Append(" ").Append(i);
            }
            var result = MessageBox.Show(longTextBuilder.ToString());
            Console.WriteLine(result);
        } 
    }
}

Output窗口中的样本:

ShortMessage_Clicked
OK
ShortMessage_Clicked
OK
LongMessage_Clicked
No
The thread 0x55bc has exited with code 0 (0x0).

1 个答案:

答案 0 :(得分:1)

MessageBox中的

WPF类(和WinForms)包装了Win32 MessageBox函数,并且不会引发异常。在旧的Win32世界中,错误是通过设置最后一个错误代码来报告的,如果您不致电GetLastError进行检查,则可以继续前进,而无需知道有什么损坏。

来自Reference Source

//so it just translates the return code to a MessageBoxResult

MessageBoxResult result = Win32ToMessageBoxResult (UnsafeNativeMethods.MessageBox (new HandleRef (null, owner), messageBoxText, caption, style));

我尚未测试Win32 MessageBox functionlpText字符串的容量。但是如果容量限制为1024409665536之类的话,也就不足为奇了。毕竟,MessageBox函数旨在显示短消息。