0

我找到了一种使用键值的解决方案,但问题是当我在像 MyUserControl1.Param.Key = "Area"; 这样的 .Cs 上使用它时 MyUserControl1.Param.Value = 面积

它不允许我这样做......下面是代码......

public partial class MyUserControl : System.Web.UI.UserControl
{
    private Dictionary<string, string> labels = new Dictionary<string, string>();

    public LabelParam Param
    {
        private get { return null; }
        set
        { 
            labels.Add(value.Key, value.Value); 
        }
    }

    public class LabelParam : WebControl
    {
        public string Key { get; set; }
        public string Value { get; set; }

        public LabelParam() { }
        public LabelParam(string key, string value) { Key = key; Value = value; }
    }
}
If I use it aspx page like below it work fine:

<%@ Register src="MyUserControl.ascx" tagname="MyUserControl" tagprefix="test" %>

<test:MyUserControl ID="MyUserControl1" runat="server">
    <Param Key="d1" value="ddd1" />
    <Param Key="d2" value="ddd2" />
    <Param Key="d3" value="ddd3" />
</test:MyUserControl>
4

1 回答 1

0

当您使用您提到的 Param 属性时:

MyUserControl1.Param.Key = "Area"
MyUserControl1.Param.Value = Area 

您将收到一个错误,因为您正在访问您的 Param 属性的 get 部分。属性的 get 部分的实现始终返回 null,这将导致您的代码失败并可能出现 NullRefrenceException。

除此之外,您的控件在字典中包含多个键值对,因此使用 Param 属性访问这些值没有意义。

尝试添加如下属性:

public IDictionary<string,string> Labels
{
    get 
    { 
       return labels; 
    }
}

然后您可以访问以下值:

myControl.Labels["Key"] = value;
于 2013-04-30T12:19:09.960 回答