ToolboxItemCollection.cs 929 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Drawing.Design.ToolboxItemCollection
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Collections;
  10. namespace System.Drawing.Design
  11. {
  12. public sealed class ToolboxItemCollection : ReadOnlyCollectionBase
  13. {
  14. [MonoTODO]
  15. public ToolboxItemCollection (ToolboxItem[] value)
  16. {
  17. }
  18. [MonoTODO]
  19. public ToolboxItemCollection (ToolboxItemCollection value)
  20. {
  21. }
  22. public ToolboxItem this [int index] {
  23. [MonoTODO]
  24. get { throw new NotImplementedException(); }
  25. }
  26. [MonoTODO]
  27. public bool Contains (ToolboxItem value)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO]
  32. public void CopyTo (ToolboxItem[] array, int index)
  33. {
  34. throw new NotImplementedException();
  35. }
  36. [MonoTODO]
  37. public int IndexOf (ToolboxItem value)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO]
  42. ~ToolboxItemCollection()
  43. {
  44. }
  45. }
  46. }