1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using Comal.Classes;
- using InABox.Configuration;
- using InABox.Core;
- namespace PRSDesktop
- {
- public class CalendarPanel : Calendar, IPanel<Assignment>
- {
- public string SectionName { get; }
-
- public CalendarPanel() : base()
- {
- SectionName = "Calendar";
- LoadSettings += (sender) => new UserConfiguration<CalendarSettings>(nameof(CalendarPanel)).Load();
- SaveSettings += (sender,properties) => new UserConfiguration<CalendarSettings>(nameof(CalendarPanel)).Save(properties);
- }
-
- public event DataModelUpdateEvent? OnUpdateDataModel;
-
- public void CreateToolbarButtons(IPanelHost host)
- {
- }
- public Dictionary<string, object[]> Selected()
- {
- return new Dictionary<string, object[]>();
- }
- public void Heartbeat(TimeSpan time)
- {
-
- }
-
- public override void Setup()
- {
- base.Setup();
- }
-
- public override void Shutdown()
- {
- base.Shutdown();
- }
-
- public override void Refresh()
- {
- base.Refresh();
- }
-
- }
- }
|