Пример #1
0
 /**
  * \brief <b>Brief Description</b> - DisplayCurrentCalendar <b><i>class method</i></b> - Displays the calendar of the selected date
  * \details <b>Details</b>
  *
  * This takes the scheduling library, the date of the month the calendar should be set to and offsets for the display.
  *
  * \return <b>void</b>
  */
 private void DisplayCurrentCalendar(Scheduling scheduling, DateTime dateTime, int xOffset = 5, int yOffset = 5)
 {
     Container.DisplayContent(ConvertIntoSingleList(GenerateCalendarList(scheduling.GetWeeksByMonth(dateTime), scheduling, dateTime.Month), xOffset, yOffset), 0, -1, MenuCodes.SCHEDULING, "Scheduling", "Select Date");
 }