Ejemplo n.º 1
0
        public WOL2Timer( WOL2Timer t )
        {
            for( int i = 0; i < 7 ; i++ )
                m_Days.Add( new WOL2TimerDay( t.GetTimeForDay( i ) ) );

            m_bIsEnabled = t.IsEnabled();
        }
Ejemplo n.º 2
0
        public WOL2Timer(WOL2Timer t)
        {
            for (int i = 0; i < 7; i++)
            {
                m_Days.Add(new WOL2TimerDay(t.GetTimeForDay(i)));
            }

            m_bIsEnabled = t.IsEnabled();
        }
Ejemplo n.º 3
0
        public DlgEditTimer( WOL2Timer t )
        {
            // The InitializeComponent() call is required for Windows Forms designer support.
            InitializeComponent();

            m_Timer = t;
            m_theTimer = new WOL2Timer( t );

            chkTimerEnabled.Checked = m_theTimer.IsEnabled();

            UpdateDescription();
        }
Ejemplo n.º 4
0
        public DlgEditTimer(WOL2Timer t)
        {
            // The InitializeComponent() call is required for Windows Forms designer support.
            InitializeComponent();

            m_Timer    = t;
            m_theTimer = new WOL2Timer(t);

            chkTimerEnabled.Checked = m_theTimer.IsEnabled();

            UpdateDescription();
        }
Ejemplo n.º 5
0
 /// <summary>
 /// Sets the associated timer
 /// </summary>
 public void SetTimer(WOL2Timer t)
 {
     m_Timer = t;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Sets the associated timer
 /// </summary>
 public void SetTimer( WOL2Timer t )
 {
     m_Timer = t;
 }