This question is locked. New answers and comments are not allowed.
I've recently moved to the internal build 2011.2.0823 in an effort to overcome a problem with the RadGrid. In doing so I am now presented with an inability to compile as ITimeMarker "does not contain a defintion for 'TimeMarkerBrush'" ...
Can you please advise if there has been a change in the interface or if this is a bug in the internal release.
The full code which was a sample provided from the ScheduleView thread is as follows:
Many thanks,
Mark
Can you please advise if there has been a change in the interface or if this is a bug in the internal release.
The full code which was a sample provided from the ScheduleView thread is as follows:
public partial class TimeMarker : ITimeMarker { System.Windows.Media.Brush ITimeMarker.TimeMarkerBrush { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public bool Equals(ITimeMarker other) { return this.TimeMarkerName != other.TimeMarkerName && this.TimeMarkerBrush != other.TimeMarkerBrush.ToString(); } }Many thanks,
Mark