| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // System.Windows.Forms.Design.ComponentDocumentDesigner.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Windows.Forms;
- namespace System.Windows.Forms.Design
- {
- /// <summary>
- /// Summary description for ComponentDocumentDesigner.
- /// </summary>
- 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 ();
- // }
- }
- }
|