New to Telerik UI for .NET MAUIStart a free 30-day trial

Contains information about the dialog which is going to be shown. This event argument class allows applications to intercept dialog opening events and optionally cancel dialog display or customize dialog behavior.

Definition

Namespace:Telerik.Maui.Controls.Scheduler

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class SchedulerDialogOpeningEventArgs : SchedulerDialogEventArgs

Inheritance: objectSchedulerDialogEventArgsSchedulerDialogOpeningEventArgs

Inherited Members SchedulerDialogEventArgs.DialogType

Constructors

Initializes a new instance of the SchedulerDialogOpeningEventArgs class.

C#
public SchedulerDialogOpeningEventArgs(SchedulerDialogType dialogType)
Parameters:dialogTypeSchedulerDialogType

Properties

Gets or sets a value indicating whether the dialog should be opened. When set to true, the dialog opening is cancelled and the default dialog will not be displayed. This allows applications to implement custom dialogs or restrict dialog access.

C#
public bool Cancel { get; set; }