GrapeCity CalendarGrid for Windows Forms 2.0J > CalendarGridの使い方 > カレンダーコントロールの操作 > 今日の日付に移動する |
たとえば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);