AULA 3 - CRIANDO APLICATIVOS COM .NET MAUI - JOGO DA VELHA

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 พ.ย. 2024

ความคิดเห็น •

  • @prof.tiagotas
    @prof.tiagotas  6 หลายเดือนก่อน +1

    Gostou do conteúdo? 😁
    Você pode contribuir com meu trabalho fazendo uma doação via Pix: tiago@tiago.blog.br
    🍻🍻

  • @claudiobarros3107
    @claudiobarros3107 4 หลายเดือนก่อน +1

    Fiz assim o Zerar
    void Zerar()
    {
    foreach (View i in ((Grid)this.Content).Children.Where(x => x.GetType() == typeof(Button)))
    {
    {
    if (i.GetType() == typeof(Button))
    {
    Button bt= (Button)i;
    bt.Text = "";
    bt.IsEnabled = true;
    }
    }
    }
    }