Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/wpf/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# &引用;“显示全天区域”;在Silverlight telerik RadScheduleView中不执行任何操作_C#_Wpf_Silverlight_Telerik_Telerik Scheduler - Fatal编程技术网

C# &引用;“显示全天区域”;在Silverlight telerik RadScheduleView中不执行任何操作

C# &引用;“显示全天区域”;在Silverlight telerik RadScheduleView中不执行任何操作,c#,wpf,silverlight,telerik,telerik-scheduler,C#,Wpf,Silverlight,Telerik,Telerik Scheduler,我将Telerik silverlight RadScheduler与silverlight一起使用。ViewDefinition的“Show All Day area”属性似乎不起作用。我已在ViewDefinition中启用“ShowAllDayArea”以“true”它。约会中的“IsAllDayEvent”属性将根据视图模型中的开始日期和结束日期进行检查。但是全天的事件并没有显示在调度程序的顶部。有人能帮上忙吗 产品版本 2014.3.1202.1050 Xaml时间表视图 <

我将Telerik silverlight RadScheduler与silverlight一起使用。ViewDefinition的“Show All Day area”属性似乎不起作用。我已在ViewDefinition中启用“ShowAllDayArea”以“true”它。约会中的“IsAllDayEvent”属性将根据视图模型中的开始日期和结束日期进行检查。但是全天的事件并没有显示在调度程序的顶部。有人能帮上忙吗

产品版本 2014.3.1202.1050

Xaml时间表视图

<telerik:RadScheduleView
        Name="radScheduleDetails"            
        NavigationHeaderVisibility="Collapsed"
        ActiveViewDefinitionIndex="{Binding ActiveViewDefinitionIndex,Mode=TwoWay}"
        DragVisualTemplate="{StaticResource DragVisualContentTemplate}"
        DragDropHighlightStyle="{StaticResource CustomDragDropHighlightStyle}"
        EditAppointmentDialogStyle="{StaticResource CustomEditAppointmentDialogStyle}"              
        ToolTipTemplate="{StaticResource AppointmentToolTipTemplate}"
        AppointmentsSource="{Binding Appointments}"                
        SelectedAppointment="{Binding SelectedAppointment, Mode=TwoWay}"
        AppointmentSelectionChanged="radScheduleDetails_AppointmentSelectionChanged"
        AppointmentItemContentTemplate="{StaticResource templateCalAppointment}"
        ShowDialog="RadScheduleDetails_OnShowDialog"              
        DialogClosing="RadScheduleDetails_OnDialogClosing"
        AppointmentEdited="RadScheduleView_AppointmentEdited"
        GroupDescriptionsSource="{Binding GroupDescriptions,Mode=TwoWay}"
        ResourceTypesSource="{Binding ResourceTypes,Mode=TwoWay}"
        VisibleRangeChangedCommand="{Binding VisibleDateRangeChanged}"
        VisibleRangeChangedCommandParameter="{Binding VisibleRange,RelativeSource={RelativeSource Self}}"
        CurrentDate="{Binding ViewCurrentDate,Mode=TwoWay}"                         
        SpecialSlotsSource="{Binding WorkingHours}"
        TimeRulerItemStyleSelector="{StaticResource TimeRulerItemStyleSelector}"      
        GroupHeaderStyleSelector="{StaticResource GroupHeaderItemSelector}"
        MinTimeRulerExtent="600" MaxTimeRulerExtent="10000"   FirstVisibleTime="07:30"
        AppointmentEditing="radScheduleDetails_AppointmentEditing" >

                <telerik:DayViewDefinition
                    x:Name="DayViewDefination"
                                           EnableSmallAppointmentRendering="True"                                        
                                           ShowWeekGroupHeaders="False"                                             
                                           GroupFilter="{Binding GroupFilter}"                                              
                                           MinTimeRulerExtent="1600"         
                                           MaxTimeRulerExtent="1600"                                                 
                       MajorTickLength="1h"
                       MinorTickLength="30min"      
                                           ShowTimeRuler="True"   
                                           ShowAllDayArea="True"
                                                />