Category / Section
How to use Prism library for WPF Scheduler (Calendar)
1 min read
SfScheduler allows to use the Prism unity to set the ItemSource using ViewModelLocator and set the AutoWireViewModel property as true.
Refer the following documentation for prism library configuration in the application.
https://prismlibrary.com/docs/viewmodel-locator.html
C#
To wire the ViewModel collection to Scheduler, keep the ViewModel name along with the View name. Here, the ViewModel is added with MainWidnow – MainWindowViewModel.
public class MainWindowViewModel : INotifyPropertyChanged { public MainWindowViewModel() { } }
XAML
Enable AutoWireViewModel to wire the DataContext of a view to an instance of MainWindowViewModel.
<Window x:Class="WpfScheduler.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:syncfusion="http://schemas.syncfusion.com/wpf" xmlns:local="clr-namespace:WpfScheduler" xmlns:prism="http://prismlibrary.com/" prism:ViewModelLocator.AutoWireViewModel="True" WindowStartupLocation="CenterScreen" > <Grid> <syncfusion:SfScheduler x:Name="Schedule" ViewType="Month" ItemsSource="{Binding Meetings}"> <syncfusion:SfScheduler.AppointmentMapping> <syncfusion:AppointmentMapping StartTime="From" EndTime="To" Subject="EventName" AppointmentBackground="Color" IsAllDay="IsAllDay"/> </syncfusion:SfScheduler.AppointmentMapping> </syncfusion:SfScheduler> </Grid> </Window>