Intersoft ClientUI Documentation
How-to: Move UXScheduleView Calendar and Resource List to an External Container

This example shows how to move the UXScheduleView Calendar and Resource List to external container.

Example

Description

By default, the calendar and resource list panel is placed within UXScheduleView. If you preferred, you can move the calendar and resource list panel to a container outside the UXScheduleView by setting the NavigationPanePlaceHolderId property to the ID of the desired container. The container can be any compatible panels or content control directly under the root visual.

Code

XAML
Copy Code
<Intersoft:UXScheduleView DisplayDate="1/2/2012" NavigationPanePlaceHolderId="ExternalContainer"
                            EventsSource="{Binding Events}" CategoriesSource="{Binding Categories}" ResourcesSource="{Binding Resources}">
    <Intersoft:UXScheduleDayView/>
    <Intersoft:UXScheduleWorkWeekView/>
    <Intersoft:UXScheduleWeekView IsActive="True"/>
    <Intersoft:UXScheduleMonthView/>
</Intersoft:UXScheduleView>
See Also

Concepts