如何自定义控件的事件

public void InstantiateIn(Control container)

{

Literal l = new Literal();  

//创建Literal控件, 该控件表示在网页上保留显示静态文本的位置

l.DataBinding += new EventHandler(this.BindData);

//为控件添加事件,this.BindData为处理事件的方法,也可以:l.DataBinding += new EventHandler(BindData);

    container.Controls.Add(l); //在容器中添加创建的Literal控件

}

 

// Create a public method that will handle the

// DataBinding event called in the InstantiateIn method.

 

//创建事件处理所调用的方法

public void BindData(object sender, EventArgs e)

{

    Literal l = (Literal) sender; //确保对象为Literal类型

DataGridItem container = (DataGridItem) l.NamingContainer;

//创建容器

// DataGridItem表示 DataGrid 控件中的某项(行)。

// Literal 控件的NamingContainer属性获取对该服务器控件的命名容器的引用

l.Text = ((DataRowView) container.DataItem)[column].ToString();

// Literal 控件显示的文本

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值