PowerTools CalendarGrid for Windows Forms 1.0J
今日の日付に移動する

たとえばCalendarGridの隣に「今日」ボタンを配置して、このボタンにクリックによってカレンダーで今日の日付を選択するには、次のようにコーディングします。

Dim today As DateTime = DateTime.Today
' 現在の選択をクリアする
GcCalendarGrid1.ClearSelection()
' 今日の日付を選択する
GcCalendarGrid1.AddSelection(today)
' 今日の日付にスクロールする
GcCalendarGrid1.ScrollIntoView(today)
var today = DateTime.Today;
// 現在の選択をクリアする
gcCalendarGrid1.ClearSelection();
// 今日の日付を選択する
gcCalendarGrid1.AddSelection(today);
// 今日の日付にスクロールする
gcCalendarGrid1.ScrollIntoView(today);
参照

 

 


© 2014 GrapeCity inc. All rights reserved.