You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

JobNode.cs 436 B

15 years ago
123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. using Quartz;
  7. namespace ClickForensics.Quartz.Manager
  8. {
  9. public class JobNode : TreeNode
  10. {
  11. public JobNode(JobDetail jobDetail)
  12. : base()
  13. {
  14. this.Text = jobDetail.Name;
  15. Detail = jobDetail;
  16. }
  17. public JobDetail Detail { get; private set; }
  18. }
  19. }

No Description