nchaud
nchaud

Reputation: 377

WPF UI to allow user scheduling

I'd like to display a UI in my WPF app much like the 'Scheduled Tasks' UI in Windows.

I'm planning to suck out the parameters of the task from the UI and schedule it on a server.

I don't want to reinvent the wheel by doing all this myself though.

There's plenty of scheduler libraries out there (like Quartz) that run as a service and run tasks at preset times - but I need just a UI.

Upvotes: 4

Views: 3684

Answers (2)

wonea
wonea

Reputation: 4969

Here's someone who's decided to roll their own, and provides the source code.

WPF Scheduler control

WPF Scheduler control example

Other vendors;

DevExpress

WPF Scheduler Control example

WPF Scheduler Control

SyncFusion

SF WPF Scheduler example

WPF Scheduler

Mindfusion

Mindfusion WPF Planner example

WPF Planner

Mindscape

Mindscape WPF Scheduler

WPF Scheduler

Upvotes: 3

BrokenGlass
BrokenGlass

Reputation: 161002

Telerik has a Scheduler Control for WPF, there's a walk through article here

Infragistics has a Scheduler Control for WPF as well, features here

Upvotes: 0

Related Questions