| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Windows.Forms.Design.ComponentEditorForm.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms.Design {
- /// <summary>
- /// Summary description for ControlDesigner.
- /// </summary>
- public class ControlDesigner {
- public ControlDesigner() {
- //
- // TODO: Add constructor logic here
- //
- }
- public class ControlDesignerAccessibleObject{
- public ControlDesignerAccessibleObject() {
- //
- // TODO: Add constructor logic here
- throw new NotImplementedException ();
- //
- }
- }
- }
- }
|