| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using Comal.Classes;
- using InABox.Configuration;
- using InABox.Core;
- using System.ComponentModel;
- 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 Refresh()
- {
- base.Refresh();
- }
-
- }
- }
|