My range selector represents the 100% length of a running track. RangeStart represents the position of the start line, RangeEnd is represents the end.
I tried databinding to the RangeStart and RangeEnd properties of my selector but, after the initial binding get/set there didn't appear to be any further property change events when I changed the ranges.
How do I bind please?
radRangeSelector1.DataBindings.Add(new Binding( radRangeSelector1.GetMemberName(x => x.StartRange), bs, this.GetMemberName(x => x.StartRange), false, DataSourceUpdateMode.OnPropertyChanged));radRangeSelector1.DataBindings.Add(new Binding( radRangeSelector1.GetMemberName(x => x.EndRange), bs, this.GetMemberName(x => x.EndRange), false, DataSourceUpdateMode.OnPropertyChanged));
