How do i get an Image for the various MessageBoxImage(s) or MessageBoxIcon(s)

前端 未结 4 2075
不知归路
不知归路 2020-12-09 14:15

How do i get an System.Drawing.Image for the various System.Windows.MessageBoxImage(s) and/or System.Windows.Forms.MessageBoxIcon(s)<

4条回答
  •  时光取名叫无心
    2020-12-09 14:55

    MessageBox.Show(
      "Hello, world!",
      "My App",
      MessageBoxButton.OK, MessageBoxImage.Information);
    

    As simple as that.

提交回复
热议问题