本文介绍了MessageBoxIcon.Exclamation 和 MessageBoxIcon.Warning 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

MessageBoxIcon.Exclamation 和 MessageBoxIcon.Warning 有什么区别?

What is difference between MessageBoxIcon.Exclamation and MessageBoxIcon.Warning?

推荐答案

没有区别,都是同一个数字(48)的别名.

There is no difference, they are aliases for the same number (48).

public enum MessageBoxIcon
{
   None = 0,
   Error = 16,
   Hand = 16,
   Stop = 16,
   Question = 32,
   Exclamation = 48,
   Warning = 48,
   Asterisk = 64,
   Information = 64,
 }

这篇关于MessageBoxIcon.Exclamation 和 MessageBoxIcon.Warning 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 01:22