我使用Telerik演示调度程序作为我的基础,如http://www.telerik.com/community/forums/wpf/scheduler/uniqueid-property-how-to-access-it.aspx中所见 所以我已经实现了从SQL加载到此调度程序的数据。现在我想实现拖放。那么,如何在旧地方获取我的预约值,在调度程序的新位置获取值,以及最好的技巧是什么?我会使用这些值来实现SQL中约会日期的更新。
答案 0 :(得分:0)
private void OnAppointmentEdited(object sender, AppointmentEditedEventArgs e)
{
Appointment eAppo = e.Appointment as Appointment;
SessionAppointment ses = e.Appointment as SessionAppointment;
if(eAppo != null && ses != null)
{
DateTime dateStart = eAppo.Start; //new datestart
DateTime dateEnd = eAppo.End;//new dateend
string id = ses.UniqueId;//id
}
}