ByteViewer.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // System.ComponentModel.Design.ByteViewer
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Windows.Forms;
  10. namespace System.ComponentModel.Design
  11. {
  12. [DesignTimeVisible(false)]
  13. [ToolboxItem(false)]
  14. public class ByteViewer : Control
  15. {
  16. [MonoTODO]
  17. public ByteViewer()
  18. {
  19. }
  20. [MonoTODO]
  21. public virtual DisplayMode GetDisplayMode()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. [MonoTODO]
  26. public virtual void SaveToFile (string path)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. [MonoTODO]
  31. public byte[] GetBytes ()
  32. {
  33. throw new NotImplementedException();
  34. }
  35. [MonoTODO]
  36. public virtual void SetBytes (byte[] bytes)
  37. {
  38. throw new NotImplementedException();
  39. }
  40. [MonoTODO]
  41. public virtual void SetDisplayMode (DisplayMode mode)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. [MonoTODO]
  46. public virtual void SetFile (string path)
  47. {
  48. throw new NotImplementedException();
  49. }
  50. [MonoTODO]
  51. public virtual void SetStartLine (int line)
  52. {
  53. throw new NotImplementedException();
  54. }
  55. [MonoTODO]
  56. protected override void OnKeyDown (KeyEventArgs e)
  57. {
  58. throw new NotImplementedException();
  59. }
  60. [MonoTODO]
  61. protected override void OnPaint (PaintEventArgs e)
  62. {
  63. throw new NotImplementedException();
  64. }
  65. [MonoTODO]
  66. protected override void OnResize (EventArgs e)
  67. {
  68. throw new NotImplementedException();
  69. }
  70. [MonoTODO]
  71. protected virtual void ScrollChanged (object source, EventArgs e)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. }
  76. }