ComponentEditorForm.cs 1.5 KB

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