0

我有一个用户控件,其中我有一个具有动态 TemplateField 的 RadGrid - 因为它们是动态的,所以我使用我自己的从 ITemplate 继承的自定义类。下面的代码:

    public class ApplicationHeaderTemplateItem : ITemplate
    {
        private string colName;
        public ApplicationHeaderTemplateItem(string cName)
        {
            colName = cName;
        }

        public void InstantiateIn(Control container)
        {

            HtmlTable tb = new HtmlTable();
        HtmlTableRow headerRow = new HtmlTableRow();


        //Create the textbox to display the percentage
        HtmlTableCell percentCell = new HtmlTableCell();
        RadNumericTextBox txt = new RadNumericTextBox();
        txt.ID = "txt" + colName;
        txt.DataBinding += txt_DataBinding;
        txt.AutoPostBack = true;
        txt.TextChanged += txt_TextChanged;
        percentCell.Controls.Add(txt);
        headerRow.Cells.Add(percentCell);

         --snip--
        }

        void txt_TextChanged(object sender, EventArgs e)
        {

        }

    }

如您所见,我的文本框有一个 TextChanged 事件。我的问题是该方法是在 ApplicationHeaderTemplateItem 类的上下文中创建的,因此我无法访问用户控件中的任何控件。有没有办法我可以做到这一点?

4

1 回答 1

0

使用sender参数来获取您的TextBox,那么您已经在那里,因为每个控件都有一个Page属性

void txt_TextChanged(object sender, EventArgs e)
{
    Control txt = (Control) sender;
    Page page = txt.Page;
}
于 2013-08-29T13:39:14.880 回答