| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**
- * Namespace: System.Web.UI.Design.WebControls
- * Class: BordersPageInternal
- *
- * 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 BordersPageInternal : BaseDataListPageInternal
- {
- public BordersPageInternal()
- {
- }
- [MonoTODO]
- protected override void LoadComponent()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override void SaveComponent()
- {
- throw new NotImplementedException();
- }
- public override void SetComponent(IComponent component)
- {
- base.SetComponent(component);
- InitializeForm();
- }
- [MonoTODO]
- private void InitializeForm()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override string HelpKeyword
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- }
- }
|