ByteViewer.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. public class ByteViewer : Control
  13. {
  14. [MonoTODO]
  15. public ByteViewer()
  16. {
  17. }
  18. public override ISite Site {
  19. [MonoTODO]
  20. get { throw new NotImplementedException(); }
  21. [MonoTODO]
  22. set { throw new NotImplementedException(); }
  23. }
  24. [MonoTODO]
  25. public virtual DisplayMode GetDisplayMode()
  26. {
  27. throw new NotImplementedException();
  28. }
  29. [MonoTODO]
  30. public virtual void SaveToFile (string path)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. [MonoTODO]
  35. public virtual void SetBytes (byte[] bytes)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. [MonoTODO]
  40. public virtual void SetDisplayMode (DisplayMode mode)
  41. {
  42. throw new NotImplementedException();
  43. }
  44. [MonoTODO]
  45. public virtual void SetFile (string path)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. [MonoTODO]
  50. public virtual void SetStartLine (int line)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. [MonoTODO]
  55. protected override void OnKeyDown (KeyEventArgs e)
  56. {
  57. throw new NotImplementedException();
  58. }
  59. [MonoTODO]
  60. protected override void OnPaint (PaintEventArgs e)
  61. {
  62. throw new NotImplementedException();
  63. }
  64. [MonoTODO]
  65. protected override void OnResize (EventArgs e)
  66. {
  67. throw new NotImplementedException();
  68. }
  69. [MonoTODO]
  70. ~ByteViewer()
  71. {
  72. }
  73. }
  74. }