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

Represents the event arguments for the DialogOpening and DialogClosing events. This abstract base class provides common functionality for dialog-related events, enabling applications to respond to and control scheduler dialog interactions.

Definition

Namespace:Telerik.Maui.Controls.Scheduler

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public abstract class SchedulerDialogEventArgs

Inheritance: objectSchedulerDialogEventArgs

Derived Classes: SchedulerDialogClosingEventArgsSchedulerDialogOpeningEventArgs

Constructors

Initializes a new instance of the SchedulerDialogEventArgs class.

C#
public SchedulerDialogEventArgs(SchedulerDialogType dialogType)
Parameters:dialogTypeSchedulerDialogType

Properties

Gets the dialog type that is about to be opened or was closed. This property identifies which specific scheduler dialog is involved in the event, allowing event handlers to implement type-specific behavior.

C#
public SchedulerDialogType DialogType { get; }