Button.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : Button.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.Drawing;
  11. using System.ComponentModel;
  12. using System.Web.UI.WebControls;
  13. namespace Itenso.WebUserForms.Controls
  14. {
  15. // ------------------------------------------------------------------------
  16. [DefaultProperty( "CommandName" )]
  17. [Designer( typeof( UserFormCommandDesigner ) )]
  18. [ToolboxBitmap( typeof( ResFinder ), "Itenso.WebUserForms.Controls.Images.Button.png" )]
  19. public class Button : System.Web.UI.WebControls.Button, IUserFormCommand
  20. {
  21. // ----------------------------------------------------------------------
  22. [DefaultValue( "" )]
  23. [Description( "Form Command Name" )]
  24. [Category( "Web User Forms" )]
  25. public new string CommandName
  26. {
  27. get { return base.CommandName; }
  28. set { base.CommandName = value; }
  29. } // CommandName
  30. // ----------------------------------------------------------------------
  31. [DefaultValue( "" )]
  32. [Description( "Form Command Argument" )]
  33. [Category( "Web User Forms" )]
  34. public new string CommandArgument
  35. {
  36. get { return base.CommandArgument; }
  37. set { base.CommandArgument = value; }
  38. } // CommandArgument
  39. } // class Button
  40. } // namespace Itenso.WebUserForms.Controls
  41. // -- EOF -------------------------------------------------------------------