blueprint-compiler/tests/samples/string_list.blp
2022-01-11 22:37:24 -06:00

12 lines
133 B
Text

using Gtk 4.0;
StringList greetings {
strings [
"Hello, world!",
_("Hello!"),
]
}
Gtk.DropDown {
model: greetings;
}