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
145
Bnding SelectedTime property
posted

Hi,

i have a problem with the timeline.

in my modell i have a property:

        public DateTime SelectedTime
        {
            get
            {
                return _selectedTime;
            }
 
            set
            {
                if (_selectedTime != value)
                {
                    _selectedTime = value;
                    ParameterChanged = true;
                    NotifyPropertyChanged("SelectedTime");                    
                }
            }
        }

Now i wantto bind this to the timeline so i have the selected timeline DateTime in my modell.

<ig:DateTimeAxis Minimum="{Binding MinTime}" Maximum="{Binding MaxTime}" SelectedTime="{Binding SelectedTime}" 
                 ShowThumb="False" ShowMinorGridLines="False" ShowMinorTickMarks="True"  />

But i i select one timeline event nothink happens :( Regards Steffen

Parents
No Data
Reply
  • 27093
    posted

    Hello,       

    I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.

    If the above suggestion helped you solve your issue please verify the thread as answered so other users may take better advantage of it.

Children
No Data