作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想组合 ComboBox 的值和 MessageBoxIcon。我希望它(基本上)这样做:
MessageBox.Show("Text", "Text", MessageBoxButtons.OK, MessageBoxIcon.ComboBox.Value.ToString());
这可能吗?它不必在一行中完成。文本将为“警告”或“错误”。
最佳答案
使用 Enum.Parse方法:
MessageBox.Show("Text", "Text", MessageBoxButtons.OK,
(MessageBoxIcon)Enum.Parse(typeof(MessageBoxIcon), ComboBox.Text.ToString());
关于c# - 根据ComboBox判断MessageBoxIcon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17711481/
MessageBoxIcon.Exclamation 和 MessageBoxIcon.Warning 有什么区别? 最佳答案 没有区别,它们是同一个数字(48)的别名。 public enum Me
我想在显示消息框“问题类型”时播放声音。 这是我的代码: if (MessageBox.Show("Do you really want to delete this item?", "Confirm
如何获取各种 System.Windows.MessageBoxImage 和/或的 System.Drawing.ImageSystem.Windows.Forms.MessageBoxIcon(s
如何在 C# 2008 的 WindowsFormsApplication 中显示像 MessageBoxIcon.Stop 图像这样的窗体 最佳答案 您可以使用 SystemIcons 中的其中一个
我是一名优秀的程序员,十分优秀!