我在我的项目中使用第三方调度程序这是示例,http://scheduler-net.com/docs/simple_.net_application_with_scheduler.html
public ActionResult Index()
{
var scheduler = new DHXScheduler(this);
scheduler.LoadData = true;
scheduler.EnableDataprocessor = true;
return View(scheduler);
}
如何用实例名称替换单词“this”?