CalendarDashboard.cs 580 B

12345678910111213141516171819202122232425262728
  1. using InABox.Configuration;
  2. using PRSDesktop.WidgetGroups;
  3. using System.ComponentModel;
  4. namespace PRSDesktop
  5. {
  6. public class CalendarElement : DashboardElement<CalendarDashboard, HumanResources, CalendarSettings> { }
  7. public class CalendarDashboard : Calendar, IDashboardWidget<HumanResources, CalendarSettings>
  8. {
  9. public CalendarDashboard() : base()
  10. {
  11. }
  12. public override void Setup()
  13. {
  14. base.Setup();
  15. }
  16. public override void Refresh()
  17. {
  18. base.Refresh();
  19. }
  20. }
  21. }