
自定义控件
qiejinxing
相信或者不信!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
最简单的自定义控件(2)--增加基本属性
private string paymentMethodText = "Payment Method"; private string creditCardNoText = "CreditCardNoText"; private string cardHolderNameText = "CardHolderNameText"; private stri原创 2008-05-16 21:52:00 · 438 阅读 · 0 评论 -
自定义控件之事件回传
using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace JinXingWebControl{ [Defa原创 2008-05-22 10:06:00 · 542 阅读 · 0 评论 -
最简单的自定义控件(3)--与HtmlTextWriter有关的枚举
using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace JinXingWebControl{ [Defa原创 2008-05-16 22:29:00 · 479 阅读 · 0 评论 -
最简单的自定义控件(1)
protected override void Render(HtmlTextWriter writer) { writer.Write(""); writer.Write(""); writer.Write("Payment Method"); writer.Write("");原创 2008-05-16 21:34:00 · 516 阅读 · 0 评论 -
开发自定义控件样式(5)--webcontrol的独立方法与样式
using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace JinXingWebControl{ [Defa原创 2008-05-16 23:42:00 · 787 阅读 · 0 评论