Ejemplo n.º 1
0
        public ScheduleModule()
        {
            InitializeComponent();

            InitializeActions();
            manager = new TaskManager();
            manager.OnTaskStatusChanged += TaskStatusChanged;

            // add controllers
            manager.TaskControllers.Add(new PowerTaskController(manager, this));
            HideDetailsPanel();
            LoadTasks();
        }
Ejemplo n.º 2
0
 public PowerTaskController(TaskManager parent, Control baseControl)
     : this()
 {
     _parent = parent;
     BaseControl = baseControl;
 }
Ejemplo n.º 3
0
 public PowerTaskController(TaskManager parent)
     : this()
 {
     _parent = parent;
 }