ASP.NET自定义控件 第八天 显示多个条目星级评分的列表控件
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-20
ot;Title"] = value;
}
}
public string SubTitle
{
get
{
object o = ViewState["SubTitle"];
return o == null ? string.Empty : (string)o;
}
set
{
ViewState["SubTitle"] = value;
}
}
[PersistenceMode(PersistenceMode.InnerProperty)]
[DesignerSerializationVisibility
(DesignerSerializationVisibility.Content)]
[NotifyParentProperty(true)]
[Description("标题样式")]
public virtual TableItemStyle TitleStyle
{
get
{
if (_titleStyle == null)
{
_titleStyle = new TableItemStyle();
}
if (IsTrackingViewState)
((IStateManager)_titleStyle).TrackViewState();
return _titleStyle;
}
}
[PersistenceMode(PersistenceMode.InnerProperty)]
[DesignerSerializationVisibility
(DesignerSerializationVisibility.Content)]
[NotifyParentProperty(true)]
[Description("二级标题样式")]
public virtual TableItemStyle SubTitleStyle
{
get
{
if (_subtitleStyle == null)
{
_subtitleStyle = new TableItemStyle();
}
if (IsTrackingViewState)
((IStateManager)_subtitleStyle).TrackViewState();
return _subtitleStyle;
}
}
[PersistenceMode(PersistenceMode.InnerProperty)]
[DesignerSerializationVisibility
(DesignerSerializationVisibility.Content)]
[NotifyParentProperty(true)]
[Description("标签样式")]
public virtual TableItemStyle LabelStyle
{
get
{
if (_labelStyle == null)
{
_labelStyle = new TableItemStyle();
// Can initialize the style HERE
}
if (IsTrackingViewState)
((IStateManager)_labelStyle).TrackViewState();
return _labelStyle;
}
}
3.8 定义事件响应方法: protected virtual void OnBarChartCreated(BarChartItemEventArgs e) { if (BarChartItemCreated != null) BarChartItemCreated(this, e); } protected virtual void OnBarChartDataBound(BarChartItemEventArgs e) { if (BarChartItemDataBound != null) BarChartItemDataBound(this, e); } 3.9 编写创建子控件层次方法: protected override int CreateChildControls(IEnumerable dataSource, bool dataBinding) { return CreateControlHierarchy(dataSource, dataBinding); } private int CreateControlHierarchy(IEnumerable dataSource, bool dataBinding) { if (dataSource == null) { RenderEmptyControl(); return 0; } Table t = new Table(); Controls.Add(t); //创建标题 CreateTitle(t); //创建二级标题 CreateSubTitle(t); //创建数据项 int totalItems = CreateAllItems(t, dataSource, dataBinding); return totalItems; } 3.10 编写创建控件方法: private void RenderEmptyControl() { LiteralControl lbl = new LiteralControl("??????"); Controls.Add(lbl); } private void CreateTitle(Table t) { BarChartItem item = new BarChartItem(BarChartItemType.Title); t.Rows.Add(item); TableCell cell = new TableCell(); item.Cells.Add(cell); cell |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET自定义控件 第八天 显示多个条目星级评分的列表控件的所有评论