New to Telerik UI for WPFStart a free 30-day trial

Provides the properties and methods for a control that can host a ScheduleView dialog.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IScheduleViewDialogHost

Derived Classes: SchedulerWindow

Properties

Gets or sets the Content of the host control.

C#
object Content { get; set; }

Gets or sets the data context for the host control.

C#
object DataContext { get; set; }

Gets or sets a reference to the owner RadScheduleView.

C#
ScheduleViewBase ScheduleView { get; set; }

Style

Style

Gets or sets the Style for the host control.

C#
Style Style { get; set; }

Methods

Closes the host control.

C#
void Close()

Shows the host control.

C#
void Show(bool isModal)
Parameters:isModalbool

Specifies whether the host should be modal or not.

Events

Occurs when the host is closed.

C#
event EventHandler<WindowClosedEventArgs> Closed