Scheduler for WPF
AppointmentCustomAction イベント (C1Scheduler)
使用例 

C1.WPF.Schedule アセンブリ > C1.WPF.Schedule 名前空間 > C1Scheduler クラス : AppointmentCustomAction イベント
Occurs immediately before a custom action of an C1.C1Schedule.Appointment object executes.
シンタックス
'宣言
 
Public Event AppointmentCustomAction As System.EventHandler(Of AppointmentActionEventArgs)
public event System.EventHandler<AppointmentActionEventArgs> AppointmentCustomAction
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、AppointmentActionEventArgs 型の引数を受け取りました。次の AppointmentActionEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets an Appointment object.  
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
解説
To cancel default handling, set CancelAppointmentEventArgs.Cancel property to true.
使用例
private void c1Scheduler1_AppointmentAdded(object sender, AppointmentActionEventArgs e)
{
	// create a new action
	Action action = new Action();
	action.Command = "https://www.grapecity.com/en/componentone";
	// set appointment action
	e.Appointment.Action = action;
}
参照