Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xaml Silverlight で月と年のピッカーのみが必要で、カスタム コントロールを作成する方法は?
private void Calendar_DisplayModeChanged(object sender, CalendarModeChangedEventArgs e) { if (sender is Calendar && e.NewMode != CalendarMode.Year) (sender as Calendar).DisplayMode = CalendarMode.Year; }