バージョン

週の曜日の非表示化

このトピックは、7 つすべての WinSchedule 名前空間エレメントがツールボックスに追加されていることを前提とします。

デザインタイム

  1. 7 つすべての WinSchedule エレメントをフォームに追加します。

  2. フォームに表示する任意の 5 つの視覚的エレメントを選択します。

  3. [プロパティ] ウィンドウから CalendarInfo プロパティを選択します。

  4. CalendarInfo プロパティのドロップダウン リストから UltraCalendarInfo1 を選択します。

  5. その他 4 つの視覚的エレメントに繰り返します。

  6. Form_Load イベントで追加します。

Visual Basic の場合:

Imports Infragistics.Win.UltraWinSchedule
...
Private Sub UsetheUltraCalendarInfoObjecttoHideaDayoftheWeek_Load( _
ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.UltraCalendarInfo1.DaysOfWeek(DayOfWeekEnum.Sunday).Visible = False
End Sub

C# の場合:

using Infragistics.Win.UltraWinSchedule;
...
private void UsetheUltraCalendarInfoObjecttoHideaDayoftheWeek_Load(
object sender, System.EventArgs e)
{
this.ultraCalendarInfo1.DaysOfWeek[DayOfWeekEnum.Sunday].Visible = false;
}