ComponentEditorForm.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. using System.Windows.Forms;
  10. namespace System.Windows.Forms.Design
  11. {
  12. /// <summary>
  13. /// Summary description for ComponentEditorForm.
  14. /// </summary>
  15. public class ComponentEditorForm { //: Form {
  16. public ComponentEditorForm()
  17. {
  18. //
  19. // TODO: Add constructor logic here
  20. //
  21. throw new NotImplementedException ();
  22. }
  23. public ComponentEditorForm(object component, Type[] pageTypes){
  24. //
  25. // TODO: Add constructor logic here
  26. //
  27. throw new NotImplementedException ();
  28. }
  29. // protected override void OnActivated(EventArgs e){
  30. // throw new NotImplementedException ();
  31. // }
  32. // public override bool PreProcessMessage(ref Message msg){
  33. // throw new NotImplementedException ();
  34. // }
  35. // public virtual DialogResult ShowForm(){
  36. // throw new NotImplementedException ();
  37. // }
  38. // public virtual DialogResult ShowForm(int page){
  39. // throw new NotImplementedException ();
  40. // }
  41. // public virtual DialogResult ShowForm(IWin32Window owner){
  42. // throw new NotImplementedException ();
  43. // }
  44. // public virtual DialogResult ShowForm(IWin32Window owner, int page){
  45. // throw new NotImplementedException ();
  46. // }
  47. // protected override viod onHelpRequested(HelpEventArgs e){
  48. // throw new NotImplementedException ();
  49. // }
  50. }
  51. }