PropertyTab.cs 471 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Windows.Forms.Design.ComponentEditorForm.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms.Design
  10. {
  11. /// <summary>
  12. /// Summary description for PropertyTab.
  13. /// </summary>
  14. public class PropertyTab
  15. {
  16. public PropertyTab()
  17. {
  18. //
  19. // TODO: Add constructor logic here
  20. //
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. }