Gets or sets an ItemsPanelTemplate that defines the panel that lays out elements representing separate months. This is a dependency property.

Namespace:  C1.Silverlight.Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public ItemsPanelTemplate MonthsPanel { get; set; }
Visual Basic
Public Property MonthsPanel As ItemsPanelTemplate
	Get
	Set

Remarks

C1Calendar controls supports the next panels:

Examples

Copy CodeC#
<c1sched:C1Calendar MonthCount="4">
    <c1sched:C1Calendar.MonthsPanel>
        <ItemsPanelTemplate> 
            <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate> 
    </c1sched:C1Calendar.MonthsPanel>
</c1sched:C1Calendar>

See Also