任务计划程序 2.0 将当前计划任务填充到 WPF GridView
Posted
技术标签:
【中文标题】任务计划程序 2.0 将当前计划任务填充到 WPF GridView【英文标题】:Task Scheduler 2.0 populating current scheduled tasks to WPF GridView 【发布时间】:2011-05-25 06:49:24 【问题描述】:我需要将任务调度程序 2.0 中的当前计划任务填充到 WPF 中的 GridView 中。我的应用程序当前添加和删除用户计划的任务,但我需要一种方法让他们查看当前计划的任务,而无需转到任务计划程序。
更新
感谢 pax,我最终使用了这种方法并使用 .xaml 绑定列信息
private void PopulateGridView()
//initialize task scheduler 2.0
var scheduler = new TaskScheduler.TaskScheduler();
//connect using server, username, password, and domain
scheduler.Connect(null, null, null, null);
//set folder to register tasks; "\\" = local directory
ITaskFolder rootGet = scheduler.GetFolder("\\");
//for each task in the folder delete the task
foreach (IRegisteredTask irTasks in rootGet.GetTasks(0))
dgInstanceView.ItemsSource = rootGet.GetTasks(0);
【问题讨论】:
***.com/questions/1551537/… 【参考方案1】:我建议使用 ITaskFolder interface 的 GetTasks 方法。
【讨论】:
感谢 pax 工作得很好。我最终使用了这种方法,然后使用 .xaml 绑定列信息以上是关于任务计划程序 2.0 将当前计划任务填充到 WPF GridView的主要内容,如果未能解决你的问题,请参考以下文章