This question is locked. New answers and comments are not allowed.
Simple databinding on the PeriodEnd fails while a direct setting does work;
The error doesn't seem to occur with the PeriodStart property.
//doesn't work
Model.PeriodStart = new DateTime(2011, 4, 27);Model.PeriodEnd = new DateTime(2011, 9, 27);Model.SelectionStart = new DateTime(2011, 5, 27);Model.SelectionEnd = new DateTime(2011, 6, 27); //works
TimeBar.PeriodStart = new DateTime(2011, 4, 27);TimeBar.PeriodEnd = new DateTime(2011, 9, 27);TimeBar.SelectionStart = new DateTime(2011, 5, 27);TimeBar.SelectionEnd = new DateTime(2011, 6, 27);The error doesn't seem to occur with the PeriodStart property.