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

最佳答案

没有区别,它们是同一个数字 (48) 的别名。

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

关于c# - MessageBoxIcon.Exclamation 和 MessageBoxIcon.Warning 有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11203468/

10-13 06:55