| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.ComponentModel.Design.BinaryEditor
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.Windows.Forms;
- using System.Drawing.Design;
- namespace System.ComponentModel.Design
- {
- public sealed class BinaryEditor : UITypeEditor
- {
- public BinaryEditor ()
- {
- }
- [MonoTODO]
- public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
- {
- throw new NotImplementedException ();
- }
- public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
- {
- return UITypeEditorEditStyle.Modal;
- }
- }
- }
|