| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * Namespace: System.Web.UI.Design.WebControls
- * Class: CalendarAutoFormatDialog
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- using System.Web.UI.WebControls;
- using System.Windows.Forms;
- namespace System.Web.UI.Design.WebControls
- {
- public class CalendarAutoFormatDialog : Form
- {
- private Calendar calendar;
- private bool activated;
- public CalendarAutoFormatDialog(Calendar calendar) : base()
- {
- this.calendar = calendar;
- this.activated = false;
- this.InitializeCalendar();
- }
- [MonoTODO]
- private void InitializeCalendar()
- {
- // Load various WC-schemes.
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected void OnActivated(object source, EventArgs e)
- {
- throw new NotImplementedException();
- }
- }
- }
|