
/// /// 주어진 위치가 어떤 요일인지 구함 /// /// 커서의 X좌표 /// /// [요일] /// - 0 : 일요일 /// - 1 : 월요일 /// - 2 : 화요일 /// - 3 : 수요일 /// - 4 : 목요일 /// - 5 : 금요일 /// - 6 : 토요일 /// public int GetWeek(int xCursor) { int wi = (this.Width - (this.DefaultMargin.Horizontal)) / this.Calenda..