| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- //
- // System.ComponentModel.Design.ByteViewer
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Windows.Forms;
- namespace System.ComponentModel.Design
- {
- [DesignTimeVisible(false)]
- [ToolboxItem(false)]
- public class ByteViewer : Control
- {
- [MonoTODO]
- public ByteViewer()
- {
- }
- [MonoTODO]
- public virtual DisplayMode GetDisplayMode()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SaveToFile (string path)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public byte[] GetBytes ()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SetBytes (byte[] bytes)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SetDisplayMode (DisplayMode mode)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SetFile (string path)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SetStartLine (int line)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override void OnKeyDown (KeyEventArgs e)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override void OnPaint (PaintEventArgs e)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override void OnResize (EventArgs e)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual void ScrollChanged (object source, EventArgs e)
- {
- throw new NotImplementedException ();
- }
- }
- }
|