Usually, for Labels you can do something like this:
Label label = new Label ("<b>Some Text</b>") {
UseMarkup = true
};
However, Gtk.Frame's label is just a string, not a full-fledged Label. I can't find an option to use markup. How to I enable markup, or otherwise set the label to be bold?