Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1465
How to set LogicalDayOffset in xaml
posted

Hi,

 

I am trying to set the logicaloffset day as follows:

<ig:ScheduleSettings LogicalDayOffset="{Binding DayOffset}">

 public TimeSpan DayOffset

        {

get { return _dayOffset; }

set  _dayOffset =value;

            RaisePropertyChanged("DayOffset");   }

        }

 

where DayOffset is a Timespan property on my viewmodel. But this does not work, the LogicalDayOffset is a get,set property so I am not sure why this does not work.

 

Any help will be appreciated.