CalendarAutoFormatDialog.cs 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Namespace: System.Web.UI.Design.WebControls
  3. * Class: CalendarAutoFormatDialog
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. *
  8. * (C) Gaurav Vaish (2002)
  9. */
  10. using System;
  11. using System.Web;
  12. using System.Web.UI.WebControls;
  13. using System.Windows.Forms;
  14. namespace System.Web.UI.Design.WebControls
  15. {
  16. public class CalendarAutoFormatDialog : Form
  17. {
  18. private Calendar calendar;
  19. private bool activated;
  20. public CalendarAutoFormatDialog(Calendar calendar) : base()
  21. {
  22. this.calendar = calendar;
  23. this.activated = false;
  24. this.InitializeCalendar();
  25. }
  26. [MonoTODO]
  27. private void InitializeCalendar()
  28. {
  29. // Load various WC-schemes.
  30. throw new NotImplementedException();
  31. }
  32. [MonoTODO]
  33. protected void OnActivated(object source, EventArgs e)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. }
  38. }