Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MessageBox是否可以在 C#中显示某种类型的表?
MessageBox
我希望它看起来像这样(只有文本部分忘记了按钮和颜色):
因为现在是这样的:
如何对齐数字以使其看起来像上图一样漂亮?
您必须为此设计自己的表单,内置的 MessageBox 只会显示一条消息(一个字符串),没有格式。
使用 ShowDialog() 将您的表单显示为像 MessageBox 一样的模式对话框。