my $store = Gtk3::ListStore->new(qw/Glib::String/);$store->insert_with_values(0,0,'Testing');my $combo = Gtk3::ComboBox->new_with_model_and_entry($store);$combo->set_entry_text_column(0);