// // System.Windows.Forms.Design.ComponentDocumentDesigner.cs // // Author: // Dennis Hayes (dennish@raytek.com) // (C) 2002 Ximian, Inc. http://www.ximian.com // using System; using System.Windows.Forms; namespace System.Windows.Forms.Design { /// /// Summary description for ComponentDocumentDesigner. /// public class ComponentDocumentDesigner {//: ComponentDesigner, IRootDesigner, ITooloxUser, ITypeDescriptorFilterService { public ComponentDocumentDesigner() { throw new NotImplementedException (); // // TODO: Add constructor logic here // } // public Control Control { // get{ // throw new NotImplementedException (); // } // } public bool TrayAutoArrange{ get{ throw new NotImplementedException (); } set{ throw new NotImplementedException (); } } public bool TrayLargeIcon{ get{ throw new NotImplementedException (); } set{ throw new NotImplementedException (); } } // public override void Initialize(IComponent component){ // throw new NotImplementedException (); // } // protected override void Dispose(bool disposing){ // throw new NotImplementedException (); // } // protected virtual bool GetToolSupported(ToolboxItem tool){ // throw new NotImplementedException (); // } // protected override void preFilterProperties(IDictionary properties){ // throw new NotImplementedException (); // } } }