private void txCod_rotina_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Enter)
     {
         int id_rotina = 0;
         if (int.TryParse(txCod_rotina.Text, out id_rotina))
         {
             RotinasController rc = new RotinasController();
             rc.ShowWindow(id_rotina);
         }
         txCod_rotina.Text = string.Empty;
     }
 }
        private void dataGrid_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            try
            {
                Rotinas r = (Rotinas)dataGrid.SelectedItem;
                if (r.Id == 600)
                {
                    CarregaConsultaCustomizada(r.Descricao);
                    return;
                }

                RotinasController rc = new RotinasController();
                rc.ShowWindow(r.Id);
            }
            catch
            {
            }
        }