Esempio n. 1
0
    public void Selecionar()
    {
        selecionado = this;

        txtDescricao.text = empreendimento.descricao;
        AjeitarBotaoComprar();
    }
Esempio n. 2
0
    public void Selecionar()
    {
        selecionado = this;

        AjeitarDescricao();
        AjeitarBotaoComprar();
    }
Esempio n. 3
0
    public void Selecionar()
    {
        selecionado = this;

        AjeitarDescricao();
        AjeitarBotaoComprar();

        Som.Tocar(Som.Tipo.Navegar);
    }
Esempio n. 4
0
 public static void Desselecionar()
 {
     selecionado		= null;
     if (btComprar != null)
         btComprar.interactable = false;
     if (txtComprar != null)
         txtComprar.text = "";
     if (txtDescricao != null)
         txtDescricao.text = "";
 }