C#/Calendar (2) 썸네일형 리스트형 C# 날짜관련 / 달력관련 C# 날짜관련 / 달력관련 https://pjm187.tistory.com/22 C# 날짜관련 달력관련 // 오늘 날짜를 가져오는 방법: (3월 8일 목요일) DateTime today = DateTime.Today; // 1일 날짜를 가져오는 방법: (3월 1일 목요일) DateTime first_day = today.AddDays(1 - today.Day); // 첫번째 주의 일요일.. pjm187.tistory.com // 오늘 날짜를 가져오는 방법: (3월 8일 목요일) DateTime today = DateTime.Today; // 1일 날짜를 가져오는 방법: (3월 1일 목요일) DateTime first_day = today.AddDays(1 - today.Day); // 첫번째 주의 일요일.. C# 달력관련 클래스 C# 달력관련 클래스 using System; using System.Collections.Generic; namespace Calrendar.Utils { public class CalendarInfo { public int Month { get; set; } /// /// 달력 1일 이전의 빈 공간 데이터까지 가지고 있음 /// public List DayListUI = new List(); /// /// 기본 숫자(일)만 표현 /// public List DayList = new List(); } public class CalendarDayInfo { /// /// 1일 이전의 빈 공간은 NULL /// public int? Day { get; set; } public DayOfWeek DayOfW.. 이전 1 다음