Scheduler for WPF
UserEditingAppointment イベント (C1Scheduler)

C1.WPF.Schedule アセンブリ > C1.WPF.Schedule 名前空間 > C1Scheduler クラス : UserEditingAppointment イベント
Occurs before the Edit Appointment dialog appears on the screen for editing of an existing appointment, as a result of a double-click on the appointment in one of the default control views, the EditAppointmentDialog method call, or when an EditAppointmentDialogCommand command is received.
シンタックス
'宣言
 
Public Event UserEditingAppointment As System.EventHandler(Of AppointmentActionEventArgs)
public event System.EventHandler<AppointmentActionEventArgs> UserEditingAppointment
イベント データ

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

プロパティ解説
Gets an Appointment object.  
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
System.Windows.RoutedEventArgsから継承されます。
解説
Use this event to make custom settings to an editing appointment before it appears on the screen and/or to implement your own reaction on this event, instead of activating a standard dialog window.

In order to change appointment properties before showing the dialog on a screen, use the appointment object referenced by the e.Appointment event argument.

To prevent activating a standard dialog window, set the e.Handled event argument to True.

参照