This question is locked. New answers and comments are not allowed.
Hello,
I have my own custom appointment and I cant add it to resource because my appointment don't have resource property. Do I need to inherent base appointment class or ?
Here is my code..
Thank you for your support
I have my own custom appointment and I cant add it to resource because my appointment don't have resource property. Do I need to inherent base appointment class or ?
Here is my code..
public class Program : INotifyPropertyChanged { public Guid ID { get; set; } public DateTime Start { get; set; } public DateTime End { get; set; } public string Title { get; set; }}....Program pr = new Program();pr.Label // <-- Can't usepr.Resources.Add(res);// <-- Can't uspr.Links.Add(_group[i]);// <-- Can't us....Thank you for your support