从Template类引用页面/控件

时间:2013-08-29 13:29:09

标签: c# asp.net

我有一个用户控件,其中我有一个具有动态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类的上下文中创建的,因此我无法访问用户控件中的任何控件。有没有办法可以做到这一点?

1 个答案:

答案 0 :(得分:0)

使用sender参数获取TextBox,然后您已经在那里,因为每个控件都有Page property

void txt_TextChanged(object sender, EventArgs e)
{
    Control txt = (Control) sender;
    Page page = txt.Page;
}