void m_activeMonth_BeforeMonthChanged(object sender, NuGenBeforeMonthChangedEventArgs e)
		{
			this.OnBeforeMonthChanged(e);
		}
		/// <summary>
		/// Will bubble the <see cref="BeforeMonthChanged"/> event.
		/// </summary>
		/// <param name="e"></param>
		protected virtual void OnBeforeMonthChanged(NuGenBeforeMonthChangedEventArgs e)
		{
			this.Initiator.InvokeEventHandlerT<NuGenBeforeMonthChangedEventArgs>(_beforeMonthChanged, e);
		}