在schedulerStorage 中绑定数据的办法,下面是样例代码

schedulerStorage.Appointments.Add(new DevExpress.XtraScheduler.Appointment());
            schedulerStorage.Appointments[0].AllDay = false;
            schedulerStorage.Appointments[0].LabelId = 2;
            schedulerStorage.Appointments[0].Location = "Title";
            schedulerStorage.Appointments[0].Start = DateTime.Now;
            schedulerStorage.Appointments[0].End = DateTime.Now.AddHours(1);
            schedulerStorage.Appointments[0].Subject = "Subject";
            schedulerStorage.Appointments[0].StatusId = 1;
            schedulerStorage.Appointments[0].Description = "描述";

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-04
  • 2022-12-23
  • 2021-12-10
  • 2021-11-21
  • 2021-12-29
  • 2022-01-12
相关资源
相似解决方案