Piccoli Bug crescono...

Ma sono l'unico a volere spremere .Net per tirar fuori un bel modello di programmazione ad oggetti?

L'ereditarietà, questa sconosciuta.

E i primi bug saltano fuori: una DataGridView dichiarata protected nella classe padre, non è modificabile (a design time) nella classe figlio.
Mi sono imbattuto oggi in questo problema (importando un progetto da VB.Net 2003 e cambiando la DataGrid con una nuova DataGridView) e ho anche trovato conferme qui.

Tristezza. Come proseguire?

Beh io ho risolto semplicemente inserendo un Panel nella classe padre che contiene la DataGridView, assegnandogli ovviamente la visibilità Protected a lui...

Certo che potrebbero forse controllare certe cose per invogliare a programmare con i nuovi framework e IDE, piuttosto che passare ore e ore a mostrare quanto si alza la produzione grazie a drag&drop e wizard... :S

powered by IMHO Omar "Bromarock" Damiani

Print | posted @ martedì 15 novembre 2005 20:17

Comments on this entry:

Gravatar # re: Piccoli Bug crescono...
by Omar Damiani at 12/01/2006 19:17

Depends on what you have to set in your dgv.

If is only a design or graphical problem, you can put your dgv in a panel (declared as protected) so you will work on it.

For all other properties I think you have to set them at runtime...

Bye

Comments have been closed on this topic.