让MessageBox在最前面显示

时间:2022-11-16 00:28:24

MessageBox.Show(String, String, MessageBoxButton, MessageBoxImage, MessageBoxResult, MessageBoxOptions)

参数

messageBoxText
类型: System.String
指定文本显示的 String 。
caption
类型: System.String
指定标题栏声明中显示的 String 。
button
类型: System.Windows.MessageBoxButton
指定的 MessageBoxButton 值要显示的按钮或按钮。
icon
类型: System.Windows.MessageBoxImage
指定要显示的图标 MessageBoxImage 值。
defaultResult
类型: System.Windows.MessageBoxResult
指定消息框的默认结果的 MessageBoxResult 值。
options
类型:System.Windows.MessageBoxOptions
指定选项的值 MessageBoxOptions 对象。

返回值

类型:System.Windows.MessageBoxResult
指定的 MessageBoxResult 值哪个消息框按钮由用户单击。

成员名称 说明
  DefaultDesktopOnly 消息框在交互式窗口区域的默认桌面上显示。 指定消息框从 Microsoft .NET Framework windows 服务应用程序显示以通知事件的用户。
  None 选项未设置。
  RightAlign 消息框文本和标题栏声明为右对齐。
  RtlReading 所有文本、按钮、图标和标题栏中显示的从右向左。
  ServiceNotification 消息框在当前活动的桌面显示,即使没有用户登录到计算机。 指定消息框从 Microsoft .NET Framework windows 服务应用程序显示以通知事件的用户。

例子:   MessageBox.Show("是否保存", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.None, MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification)