or
I am using RadCarouselPanel control. Instead of images as my items, I am using Labels to show some text. When I click on an item 9Label), it doesn't move to the center and show as selected. How does I make that item selected?
public ObservableCollection<Appointment> Appointments { get { return _appointments; } set { _appointments = value; } }When creating an appointment by dragging item from other control like ListView, the binding won't fire in the VM, however when I checked the appointments collection in runtime, it was added correctly. My question is how can I track this event (not in code behind) in VM when an appointment item is added to ScheduleView?