バージョン

その月以外の日にちのスタイルを変更

WebCalendarView には、月の日を表示されるが実際の月の一部ではない  スタイル する機能があります。 OtherMonthDayStyle を設定すると、実際の月の日と他の月の日の差別化に役立ちます。

以下のコードは、OtherMonthDayStyle の BackColor を紫に設定します。

WebSchedule How to Change Other Months Days Style 01.png

Visual Basic の場合:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e _
  As System.EventArgs) Handles MyBase.Load
        Me.WebCalendarView1.OtherMonthDayStyle.BackColor = Color.Purple
End Sub

C# の場合:

private void Page_Load(object sender, System.EventArgs e)
{
        this.WebCalendarView1.OtherMonthDayStyle.BackColor = Color.Purple;
}