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.
我使用标记来更改Gtk.Label字体大小。例如
Gtk.Label
label1.Markup="<span size='38000'>big text</span>";
我怎样才能为 Gtk.Button 做到这一点?
var label = new Label(); label.Markup = "<span size='38000'>big text</span>"; var button = new Button(label);