This question is locked. New answers and comments are not allowed.
We have noticed some strange behavior when drilling down to a day view whilst in a week view. The delegate attached to the VisibleRangeChangedCommand sometimes fires twice. We connect the command up in the ScheduleView XAML as follows:
The delegate is attached to the command in the view model constructor:
this.VisibleRangeChanged = new DelegateCommand(this.VisibleRangeExecuted, (param) => true);
The problem doesn't exist when drilling into day view from a month view definition. It only happens intermittently when drilling down into a day view from a week view definition.
Looks like a bug to me.
VisibleRangeChangedCommand="{Binding VisibleRangeChanged}"
VisibleRangeChangedCommandParameter="{Binding VisibleRange, RelativeSource={RelativeSource Self}}"
The delegate is attached to the command in the view model constructor:
this.VisibleRangeChanged = new DelegateCommand(this.VisibleRangeExecuted, (param) => true);
The problem doesn't exist when drilling into day view from a month view definition. It only happens intermittently when drilling down into a day view from a week view definition.
Looks like a bug to me.