想知道是否可以创建一个带有自定义按钮的 MessageBox,类似于在 java 中使用 showOptionDialog 实现的功能?
String[]colors = {"Red", "Green", "Blue"};
int color = JOptionPane.showOptionDialog(null, "Please choose color", "Color please", 0, JOptionPane.INFORMATION_MESSAGE,null, colors, colors[0]);
if(color == 0)
{
JOptionPane.showMessageDialog(null, "Red it is");
}
这在 C# 中的等价物是什么?