Interface IScheduleViewDialogHost
Provides the properties and methods for a control that can host a ScheduleView dialog.
Namespace: Telerik.Windows.Controls.ScheduleView
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public interface IScheduleViewDialogHost
Properties
Content
Gets or sets the Content of the host control.
Declaration
object Content { get; set; }
Property Value
System.Object
|
DataContext
Gets or sets the data context for the host control.
Declaration
object DataContext { get; set; }
Property Value
System.Object
|
ScheduleView
Gets or sets a reference to the owner RadScheduleView.
Declaration
ScheduleViewBase ScheduleView { get; set; }
Property Value
ScheduleViewBase
|
Style
Gets or sets the Style for the host control.
Declaration
Style Style { get; set; }
Property Value
System.Windows.Style
|
Methods
Close()
Closes the host control.
Declaration
void Close()
Show(Boolean)
Shows the host control.
Declaration
void Show(bool isModal)
Parameters
System.Boolean
isModal
Specifies whether the host should be modal or not. |
Events
Closed
Occurs when the host is closed.
Declaration
event EventHandler<WindowClosedEventArgs> Closed
Event Type
System.EventHandler<WindowClosedEventArgs>
|