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.
是否可以使用 WinForms 创建一个按钮,其中包含文本“详细信息”,然后在其旁边有一个向下箭头。
这对我的程序并不重要,但我个人认为它对用户来说看起来更好,尤其是在展开以显示更多错误细节的对话框中。
下面的代码将为您的按钮提供“详细信息”一词,旁边有一个向下的箭头。
Button1.Text = "Details " + char.ConvertFromUtf32(8595);
听起来您在询问按钮本身的内容,并想自己处理展开/折叠功能。您可以使用“向下箭头”图像创建一个 png,然后使用设计器中按钮的图像属性将图标定位在中间。