PropertyValueItem.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.Web.UI.WebControls;
  11. using System.ComponentModel;
  12. namespace System.Drawing.Design
  13. {
  14. public class PropertyValueUIItem
  15. {
  16. [MonoTODO]
  17. public PropertyValueUIItem (Image uiItemImage,
  18. PropertyValueUIItemInvokeHandler handler,
  19. string tooltip)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public virtual Image Image
  25. {
  26. get
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. }
  31. [MonoTODO]
  32. public virtual PropertyValueUIItemInvokeHandler InvokeHandler
  33. {
  34. get
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. set
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. }
  43. [MonoTODO]
  44. public virtual string ToolTip
  45. {
  46. get
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. set
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. }
  55. [MonoTODO]
  56. public virtual void Reset()
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. }
  61. }