PropertyValueItem.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // System.Drawing.Design.PropertyValueItem.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Drawing;
  9. using System.Drawing.Imaging;
  10. using System.ComponentModel;
  11. namespace System.Drawing.Design
  12. {
  13. public class PropertyValueUIItem
  14. {
  15. [MonoTODO]
  16. public PropertyValueUIItem (Image uiItemImage,
  17. PropertyValueUIItemInvokeHandler handler,
  18. string tooltip)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public virtual Image Image
  24. {
  25. get
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. }
  30. [MonoTODO]
  31. public virtual PropertyValueUIItemInvokeHandler InvokeHandler
  32. {
  33. get
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. set
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. }
  42. [MonoTODO]
  43. public virtual string ToolTip
  44. {
  45. get
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. set
  50. {
  51. throw new NotImplementedException ();
  52. }
  53. }
  54. [MonoTODO]
  55. public virtual void Reset()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. }
  60. }