[PIPython] Inserire elementi in wxComboBox in un colpo solo
Nicola Lottici
lottici
Sab 7 Gen 2006 10:25:16 CET
Non riesco ad inserire in un colpo solo degli elementi in una wxComboBox.
Ora inserisco gli elementi cosi':
lista = ["primo","secondo","terzo"]
for elemento in lista:
ComboBox1.Append(elemento)
Ma vorrei velocizzare l'inserimento, inserendo tutti gli elementi in un
colpo solo, ma non riesco a capire come si fa. Nell'help e' spiegato cosi':
wxControlWithItems::Append
int Append(const wxString& item)
Adds the item to the end of the list box.
int Append(const wxString& item, void *clientData)
int Append(const wxString& item, wxClientData *clientData)
Adds the item to the end of the list box, associating the given, typed
or untyped, client data pointer with the item.
void Append(const wxArrayString& strings)
Appends several items at once to the control. Notice that calling this
method may be much faster than appending the items one by one if you
need to add a lot of items.
Non riesco a capire pero' come dovrei creare un wxArrayString&... mi
potreste dare un aiutino? Grazie!!!
Ciao, Nicola
More information about the Python
mailing list