| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // System.Windows.Forms.Design.AnchorEditor.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Drawing.Design;
- using System.ComponentModel;
- using System.Runtime.Remoting;
- namespace System.Windows.Forms.Design
- {
- /// <summary>
- /// Summary description for AnchorEditor.
- /// </summary>
- [MonoTODO]
- public sealed class AnchorEditor : UITypeEditor {
- [MonoTODO]
- public AnchorEditor() {
- //
- // TODO: Add constructor logic here
- //
- }
- // [MonoTODO]
- // public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, Object value){
- // throw new NotImplementedException ();
- // }
- // Documented, but not implmented by Mictosoft?
- // [MonoTODO]
- // public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context){
- // throw new NotImplementedException ();
- // }
- }
- }
|