ComponentEditorForm.cs 1.4 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. [MonoTODO]
  16. public ComponentEditorForm(object component, Type[] pageTypes){
  17. }
  18. [MonoTODO]
  19. protected override void OnActivated(EventArgs e){
  20. }
  21. [MonoTODO]
  22. protected virtual void OnSelChangeSelector(object source, TreeViewEventArgs e){
  23. }
  24. [MonoTODO]
  25. public override bool PreProcessMessage(ref Message msg){
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public virtual DialogResult ShowForm(){
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public virtual DialogResult ShowForm(int page){
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public virtual DialogResult ShowForm(IWin32Window owner){
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public virtual DialogResult ShowForm(IWin32Window owner, int page){
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. // can't override the function in control. bug in compiler. Fixed?
  46. protected override void OnHelpRequested(HelpEventArgs e){
  47. }
  48. }
  49. }