private void Tile_Click_3(object sender, System.Windows.RoutedEventArgs e)
 {
     try
     {
         CadDenuncia cadDenuncia = new CadDenuncia();
         cadDenuncia.ShowDialog();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
        private void DenunciaMenuItem_Click(object sender, RoutedEventArgs e)
        {
            CadDenuncia cadDenuncia = new CadDenuncia();

            cadDenuncia.ShowDialog();
        }