BinaryEditor.cs 638 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.ComponentModel.Design.BinaryEditor
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Windows.Forms;
  10. using System.Drawing.Design;
  11. namespace System.ComponentModel.Design
  12. {
  13. public sealed class BinaryEditor : UITypeEditor
  14. {
  15. public BinaryEditor ()
  16. {
  17. }
  18. [MonoTODO]
  19. public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
  24. {
  25. return UITypeEditorEditStyle.Modal;
  26. }
  27. }
  28. }