How to show custom labels and status on custom appointment window using WPF DevExpress and MVVM
问题 I'm using a Scheduler Control in which I want to create a custom appointment window. My Scheduler Control looks like this: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> <dxsch:SchedulerControl x:Name="scheduler" ActiveViewType="WeekView" FirstDayOfWeek="Monday" Grid.Column="0"> <dxsch:SchedulerControl.OptionsWindows> <dxsch:OptionsWindows AppointmentWindowType="{x:Type local:CrearTareaWindow}"/> </dxsch