private void ExcluirArquivo_bt_Click(object sender, RoutedEventArgs e) { if (!string.IsNullOrEmpty(CaminhoArquivo_txt.Text)) { ExcluirArquivo_bt.IsEnabled = false; ProcurarArquivo_bt.IsEnabled = true; CaminhoArquivo_txt.Clear(); } }
private async void Button_Click(object sender, RoutedEventArgs e) { if (await TelaInicial.EscolhaDialogHostAsync("Voce tem certeza que deseja limpar todos os campos?")) { _caminhoImagem = null; ImagemPlugin_img.Source = null; ExcluirArquivo_bt.IsEnabled = false; ProcurarArquivo_bt.IsEnabled = true; CaminhoArquivo_txt.Clear(); NomeDoPlugin_txt.Clear(); VersaoDoPlugin_txt.Clear(); TipoDoPlugin_gb.SelectedIndex = -1; PrecoDoPlugin_txt.Clear(); PrecoDoPlugin_txt.IsEnabled = false; AutorDoPlugin_txt.Clear(); DescricaoDoPlugin_txt.Clear(); MetodosConstantes.EnviarMenssagem("Os campos foram limpos!"); } }