PowerTools PlusPak for Windows Forms 8.0J
DrawDayEventArgs クラス
メンバ  使用例 

GcCalendar.DrawDay イベントにデータを提供します。
構文
Public Class DrawDayEventArgs 
   Inherits System.EventArgs
public class DrawDayEventArgs : System.EventArgs 
解説
GcCalendar.DrawDay イベントはGcCalendarコントロールによって発生します。描画対象のDay、日付領域のBounds、描画に使用するGraphicsなど、特定の日付領域に対して描画を行うときに必要な情報を格納します。
使用例

次のサンプルコードは、このメンバの使用方法を示します。この例では、イベントハンドラがGcCalendar.DrawDay イベントの発生を通知します。この通知は、イベントの発生およびデバッグに役立ちます。

この例を実行するには、以下のコードをgcCalendar1のインスタンスを含むFormに追加し、イベントハンドラがGcCalendar.DrawDay イベントに関連付けられていることを確認します。また、gcCalendar1がCalendarType.MonthDay および OwnerDrawDay モードで初期化されることを確認します。

private void gcCalendar1_DrawDayInfo(object sender, GrapeCity.Win.Calendar.DrawDayEventArgs e)
{
    System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
    messageBoxCS.AppendFormat("{0} = {1}", "BackColor", e.BackColor);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Bounds", e.Bounds);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "ClientBounds", e.ClientBounds);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Day", e.Day);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Month", e.Month);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Year", e.Year);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "IsSelected", e.IsSelected);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "IsTrailingDay", e.IsTrailingDay);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Text", e.Text);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "ForeColor", e.ForeColor);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics);

    MessageBox.Show(messageBoxCS.ToString(), "DrawDay Event");
}
Private Sub gcCalendar1_DrawDayInfo(ByVal sender As Object, ByVal e As Global.GrapeCity.Win.Calendar.DrawDayEventArgs)

    Dim messageBoxVB As New System.Text.StringBuilder()

    messageBoxVB.AppendFormat("{0} = {1}", "BackColor", e.BackColor)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Bounds", e.Bounds)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "ClientBounds", e.ClientBounds)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Day", e.Day)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Month", e.Month)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Year", e.Year)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "IsSelected", e.IsSelected)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "IsTrailingDay", e.IsTrailingDay)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Text", e.Text)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "ForeColor", e.ForeColor)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)

    MessageBox.Show(messageBoxVB.ToString(), "DrawDay Event")
End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Calendar.DrawDayEventArgs

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

DrawDayEventArgs メンバ
GrapeCity.Win.Calendar 名前空間
DrawDay イベント
DrawMonth イベント

Send Feedback