C# 特殊消息框(或输入框)

C# Special messagebox (or input box)

我想知道是否有人知道如何在 C# 或 VB.NET

中 "invoke" 这种消息框

Don't take any notice of what is written in messagebox it's in French ^^

感谢您的帮助!

您可以在其属性中更改窗体的样式,使其像消息框一样。然后在你的 "messagebox" 中添加你需要的每一项。当您想显示它时,只需创建该表单的一个新实例,它就会出现。 或者,在此处查看:http://www.dreamincode.net/forums/topic/102866-how-to-display-combobox-items-in-message-box/

您要找的是Task Dialog。您可以了解如何在您的 WinForms 应用程序中实施它们 here

编辑:

哦,看,someone 甚至创建了一个包装器以在 WPF 中使用它们。