| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * Namespace: System.Web.UI.Design.WebControls
- * Class: FormatPageInternal
- *
- * Author: Gaurav Vaish
- * Maintainer: mastergaurav AT users DOT sf DOT net
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.Web.UI.Design;
- using System.Windows.Forms.Design;
- using System.Web.UI.WebControls;
- namespace System.Web.UI.Design.WebControls
- {
- class FormatPageInternal : BaseDataListPageInternal
- {
- public FormatPageInternal() : base()
- {
- }
- [MonoTODO]
- protected override void LoadComponent()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override void SaveComponent()
- {
- throw new NotImplementedException();
- }
- }
- }
|