How to show full screen scheduler views in WPF Scheduler?
With the help of the TimeIntervalSize property in the WPF Schedule, display the full-screen scheduler views.
XAML
To display the full-screen scheduler, set the TimeIntervalSize property to -1 in the DaysViewSettings for Day, Week, and WorkWeek views, and in the TimelineViewSettings for TimelineDay, TimelineWeek, and TimelineWorkWeek views.
<Grid x:Name="grid"> <syncfusion:SfScheduler x:Name="schedule" ViewType="Week" > <syncfusion:SfScheduler.DaysViewSettings> <syncfusion:DaysViewSettings TimeIntervalSize="-1"/> </syncfusion:SfScheduler.DaysViewSettings> <syncfusion:SfScheduler.TimelineViewSettings> <syncfusion:TimelineViewSettings TimeIntervalSize="-1"/> </syncfusion:SfScheduler.TimelineViewSettings> </syncfusion:SfScheduler> <interactivity:Interaction.Behaviors> <local:ScheduleBehavior/> </interactivity:Interaction.Behaviors> </Grid>
Conclusion
I hope you enjoyed learning about ow to show full screen scheduler views in WPF Scheduler.
You can refer to our WPF Scheduler feature tour page to know about its other groundbreaking feature representations. You can also explore our WPF Scheduler documentation to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!