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