using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Bowin.Web.Controls.Mvc
{
public class PostionBarButton : LinkButton
{
///
/// 超链接显示的文本
///
public new string Text { get; set; }
///
/// 超链接地址
///
public new string Href { get; set; }
///
/// 事件绑定
///
public new Dictionary 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();
}
}
}