SchedulerOptions.CustomizeReminderEventTypes Event
Occurs when the business object types that supply notifications are collected.
Namespace: DevExpress.ExpressApp.Scheduler.Win
Assembly: DevExpress.ExpressApp.Scheduler.Win.v24.1.dll
NuGet Package: DevExpress.ExpressApp.Scheduler.Win
Declaration
Event Data
The CustomizeReminderEventTypes event's data class is DevExpress.ExpressApp.Scheduler.NotificationEventTypesEventArgs.
Remarks
For more information, refer to the following Module event description: CustomizeReminderEventTypes.
The following example demonstrates how to handle this event:
File: MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
builder.Modules
// ...
.AddScheduler(options => {
options.CustomizeReminderEventTypes += (s, e) => {
// ...
};
})
// ...
}
// ...
}
See Also