Esempio n. 1
0
 public IElemento(Identificador Id)
 {
     identificador = Id;
 }
Esempio n. 2
0
 public Listbox(Identificador Id, string SelectValue)
     : base(Id)
 {
     selectValue = SelectValue;
 }  
Esempio n. 3
0
 public Textbox(Identificador Id, string Text = "")
     : base(Id)
 {
     text = Text;
 }    
Esempio n. 4
0
 public Combobox(Identificador Id, string SelectValue,string TipoLista = "option")
     : base(Id)
 {
     selectValue = SelectValue;
     tipoLista = TipoLista;
 }