UrlEditor.cs 927 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Web.UI.Design.UrlEditor
  3. //
  4. // Author(s):
  5. // Jackson Harper ([email protected])
  6. //
  7. // (C) 2003 Novell, Inc (http://www.novell.com)
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. using System.Drawing.Design;
  12. namespace System.Web.UI.Design {
  13. public class UrlEditor : UITypeEditor {
  14. public UrlEditor ()
  15. {
  16. }
  17. protected virtual string Caption {
  18. get {
  19. return "Select URL";
  20. }
  21. }
  22. protected virtual string Filter {
  23. get {
  24. return "All Files(*.*)|*.*|";
  25. }
  26. }
  27. protected virtual UrlBuilderOptions Options {
  28. get {
  29. return UrlBuilderOptions.None;
  30. }
  31. }
  32. [MonoTODO]
  33. public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. }
  43. }