在动态添加的UserControl上设置属性

时间:2009-02-03 20:38:43

标签: c# .net asp.net user-controls .net-2.0

我正在按照this post向页面动态添加自定义用户控件。

但是,当我将其添加到页面时,我需要在用户控件上设置属性。我怎么做?

代码片段会很好:)

详细说明:

我有一个带有公共字段的自定义用户控件(属性...例如public int someId;)

当我向页面添加UserControl时,它的类型是UserControl。我只是将其转换为MyCustomUCType并在转换控件上设置属性吗?

P.S。看起来我毕竟回答了我自己的问题。

3 个答案:

答案 0 :(得分:10)

啊,在你补充说明之前我回答了。简短的回答是,是的,只需将其作为您的自定义类型。

我将把剩下的答案留在这里作为参考,虽然看起来你不需要它。


借用其他问题中的代码,并假设可以使所有用户控件都从相同的基类继承,您可以这样做。

创建一个新类作为基本控件:

public class MyBaseControl : System.Web.UI.UserControl
{
    public string MyProperty 
    {
        get { return ViewState["MyProp"] as string; }
        set { ViewState["MyProp"] = value; }
    }
}

然后更新您的用户控件以继承您的基类而不是UserControl:

public partial class SampleControl2 : MyBaseControl
{
    ....

然后,在加载控件的位置,更改:

UserControl uc = (UserControl)LoadControl(controlPath);
PlaceHolder1.Controls.Add(uc);

为:

MyBaseControl uc = (MyBaseControl)LoadControl(controlPath);
uc.MyProperty = "foo";
PlaceHolder1.Controls.Add(uc);

答案 1 :(得分:2)

  

“当我向页面添加UserControl时,它   type是UserControl。我只是投了它   进入MyCustomUCType并设置属性   在演员控制??

这就是我要做的。如果您实际使用的是加载不同控件的示例代码,我也会使用if(x是ControlType)。

if(x is Label)
{    
     Label l = x as Label;
     l.Text = "Batman!";
}
else
     //...

修改:现在它与2.0兼容

答案 2 :(得分:1)

是的,您只需将控件转换为正确的类型。 EX:

((MyControl)control).MyProperty = "blah";