Task Scheduler 2.0 将当前计划任务填充到 WPF GridView

发布于 2024-10-07 16:28:49 字数 786 浏览 3 评论 0原文

我需要将任务计划程序 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);
        }
     }

I need to populate the currently scheduled tasks in task scheduler 2.0 to a GridView in WPF. My application currently adds and deletes tasks scheduled by the user but I need a way for them to view the current scheduled tasks without having to go to the task scheduler.

UPDATE

Thanks pax I ended up using this method and tying the column info using the .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);
        }
     }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖 2024-10-14 16:28:49

I'd suggest using the GetTasks method of the ITaskFolder interface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文