private void m_timerClignotant_Tick(object sender, EventArgs e)
        {
            Color c = c_colorClignotant1;

            if (m_etapeEnCours != null && !m_etapeEnCours.IsValide())
            {
                SetEtapeEnCours(null, null);
            }
            if (m_etapeEnCours != null && m_etapeEnCours.DateFin == null && m_etapeEnCours.DateDebut != null)
            {
                c = m_couleurClignote++;
                //c = m_panelBas.BackColor == c_colorClignotant1 ? c_colorClignotant2 : c_colorClignotant1;
            }
            m_panelBas.BackColor = c;
            m_panelTop.BackColor = c;
        }