顯示具有 民國年 標籤的文章。 顯示所有文章
顯示具有 民國年 標籤的文章。 顯示所有文章

2020年5月7日

WPF DatePicker 如何 修改為 民國年 顯示。


於 InitializeComponent(); 之後加入:


CultureInfo cui = new CultureInfo("zh-TW", true);
cui.DateTimeFormat.Calendar = new TaiwanCalendar();
Thread.CurrentThread.CurrentCulture = cui;