1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class PostionBarButton : LinkButton
- {
- /// <summary>
- /// 超链接显示的文本
- /// </summary>
- public new string Text { get; set; }
- /// <summary>
- /// 超链接地址
- /// </summary>
- public new string Href { get; set; }
- /// <summary>
- /// 事件绑定
- /// </summary>
- public new Dictionary<MouseEventEnum, string> Function { get; set; }
- public PostionBarButton()
- : base()
- {
- }
- public override string Render()
- {
- base.Text = this.Text;
- base.Href = this.Href;
- base.Function = this.Function;
- return base.Render();
- }
- }
- }
|