Scheduler for WPF
アラーム
予定 > アラーム

予定のアラームを使用すると、予定が発生する時刻よりも指定した時間だけ前に[アラーム]ダイアログボックスが表示されます。[アラーム]ダイアログボックスでは、1つまたは複数の予定を取り消すオプション(複数の予定が設定されている場合)、予定を開くオプション、またはアラームをリセットして設定した時間内に再表示するオプションを指定できます。

アラームは、予定を作成するときに設定できます。それには、[再通知]チェックボックスをオンにし、予定のどれだけ前にアラームを表示するかを指定する時間を[アラーム]ドロップダウンリストで指定します。

To set a reminder for an appointment, you can set ReminderSet property of the Appointment class to true and then based on your requirements, you can set the time interval for the reminder to start prior to the appointment as demonstrated in the following code:

C#
コードのコピー
// Showing Reminder
appointment.ReminderSet = true;
//remind before one minute
appointment.ReminderTimeBeforeStart = TimeSpan.FromMinutes(1);