| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //
- // System.ComponentModel.Design.ByteViewer
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Windows.Forms;
- namespace System.ComponentModel.Design
- {
- public class ByteViewer : Control
- {
- [MonoTODO]
- public ByteViewer()
- {
- }
- public override ISite Site {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- [MonoTODO]
- set { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public virtual DisplayMode GetDisplayMode()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual void SaveToFile (string path)
- {
- 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]
- ~ByteViewer()
- {
- }
- }
- }
|