Пример #1
0
        /// <summary>
        /// Initializes a new instance of the DayClickEventArgs class with default settings
        /// </summary>

        public DayStateChangedEventArgs(string date, mcDayState oldState, mcDayState newState)
        {
            m_date     = date;
            m_newState = newState;
            m_oldState = oldState;
            m_cancel   = false;
        }
Пример #2
0
 public Day()
 {
     m_state     = mcDayState.Normal;
     m_selection = -1;
     m_userDrawn = false;
 }
Пример #3
0
        /// <summary>
        /// Initializes a new instance of the DayClickEventArgs class with default settings
        /// </summary>

        public DayStateChangedEventArgs(string date, mcDayState oldState, mcDayState newState)
        {
            m_date = date;
            m_newState = newState;
            m_oldState = oldState;
            m_cancel = false;
        }
Пример #4
0
        public Day()
		{
			m_state = mcDayState.Normal; 
			m_selection = -1;
			m_userDrawn = false;
    	}	
Пример #5
0
 public Day()
 {
     m_state     = mcDayState.Normal;
     m_selection = -1;
 }
Пример #6
0
 public DayQueryInfoEventArgs(DateItem info, DateTime date, mcDayState state)
 {
     this.m_info = info;
     this.m_date = date;
     this.m_state = state;
 }
Пример #7
0
		public DayRenderEventArgs(Graphics graphics, Rectangle rect, DateTime date, mcDayState state)
		{
			this.m_graphics= graphics;
			this.m_rect = rect;
			this.m_date = date;
			this.m_state = state;
		}