GanttView for WinForms
曜日の背景色の設定
カスタマイズ > 曜日の背景色の設定

GanttView では、背景色を設定することで特定の曜日を強調表示できます。たとえば、週末を平日と区別するために別の色で強調表示できます。それには、コードで PaintDay イベントをサブスクライブし、BackColor プロパティを設定して特定の日の色を設定します。

You can subscribe to the PaintDay event of the C1GanttView class and set the BackColor property to customize the back color.
Below code snippet shows how you can set the BackColor of the day in the GanttView control.

C#
コードのコピー
private void C1GanttView1_PaintDay(object sender, C1.Win.C1GanttView.PaintDayEventArgs e)
{
     if (e.Date.DayOfWeek == DayOfWeek.Saturday || e.Date.DayOfWeek == DayOfWeek.Sunday)
       {
            e.BackColor = Color.MistyRose;
       }
}