我想通过更改字体类型来更改按钮或菜单项的样式。如何做到这一点导致GTK#小部件没有像“Gtk.Button.Font”这样的小部件
答案 0 :(得分:2)
使用ModifyFont方法。根据链接页面上的示例:
button1.ModifyFont(FontDescription.FromString("Courier 16"));
答案 1 :(得分:0)
而不是button1.ModifyFont
,button1.Child.ModifyFont
在我的案例中起作用。