ComponentDocumentDesigner.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // System.Windows.Forms.Design.ComponentDocumentDesigner.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 ComponentDocumentDesigner.
  14. /// </summary>
  15. public class ComponentDocumentDesigner {//: ComponentDesigner, IRootDesigner, ITooloxUser, ITypeDescriptorFilterService {
  16. public ComponentDocumentDesigner()
  17. {
  18. throw new NotImplementedException ();
  19. //
  20. // TODO: Add constructor logic here
  21. //
  22. }
  23. // public Control Control {
  24. // get{
  25. // throw new NotImplementedException ();
  26. // }
  27. // }
  28. public bool TrayAutoArrange{
  29. get{
  30. throw new NotImplementedException ();
  31. }
  32. set{
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. public bool TrayLargeIcon{
  37. get{
  38. throw new NotImplementedException ();
  39. }
  40. set{
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. // public override void Initialize(IComponent component){
  45. // throw new NotImplementedException ();
  46. // }
  47. // protected override void Dispose(bool disposing){
  48. // throw new NotImplementedException ();
  49. // }
  50. // protected virtual bool GetToolSupported(ToolboxItem tool){
  51. // throw new NotImplementedException ();
  52. // }
  53. // protected override void preFilterProperties(IDictionary properties){
  54. // throw new NotImplementedException ();
  55. // }
  56. }
  57. }