4

我有一个带有此代码的类(KeywordProperties):

public class KeywordProperties
    {
        [DisplayMode("0-1,0-2,0-3,1-1,1-2,1-3,1-6,1-9,1-10,1-11,1-12,2-1,2-2,2-3,2-9,2-10,2-12,3-1,3-2,3-3,3-10,3-12,4-13,5,6")]
        public string Onvaan { get; set; }

        [DisplayMode("0-1,0-2,0-3,1-1,1-2,1-3,1-6,1-9,1-10,1-11,1-12,2-1,2-2,2-3,2-9,2-10,2-12,3-1,3-2,3-3,3-10,3-12,4-13,5,6")]
        public string MozooKolli { get; set; }

        [DisplayMode("0-10,1-10,3-10,3-12,5,6")]
        public string EsmeDars { get; set; }

        [DisplayMode("0-1,1-1,2-1,2-2,3-1,6")]       
        public string Sokhanraan { get; set; }

        [DisplayMode("0-10,1-2,2-1,2-10,3-10,6")]
        public string Modares { get; set; }
}

我还有另一个检查属性:

[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class DisplayModeAttribute : Attribute
{
    private readonly string mode;
    public DisplayModeAttribute(string mode)
    {
        this.mode = mode ?? "";
    }
    public override bool Match(object obj)
    {
        var other = obj as DisplayModeAttribute;
        if (other == null) return false;

        if (other.mode == mode) return true;

        // allow for a comma-separated match, in either direction
        if (mode.IndexOf(',') >= 0)
        {
            string[] tokens = mode.Split(',');
            if (Array.IndexOf(tokens, other.mode) >= 0) return true;
        }
        else if (other.mode.IndexOf(',') >= 0)
        {
            string[] tokens = other.mode.Split(',');
            if (Array.IndexOf(tokens, mode) >= 0) return true;
        }
        return false;
    }
}

我想使用以下代码在 propertygrid 中显示属性:

String Code = "":
KeywordProperties Kp = new KeywordProperties();
propertygrid1.SelectedObject = Kp;
propertygrid1.BrowsableAttributes = new AttributeCollection(new DisplayModeAttribute(Code));

当 Code vlue 为“0-1”或“5”或...(单个值)时,我可以看到我的属性。但是,当对代码使用“0-1,1-2”时,我的属性网格中看不到任何东西。

我怎样才能看到这些数据:

1- 具有代码0-1 和代码1-2的所有属性:

结果是:Onvaan,MozooKolli

2- 具有代码0-1 或代码1-2的所有属性:

结果是:Onvaan、MozooKolli、Sokhanraan、Modares

4

1 回答 1

3

看来您的代码仅DisplayModeAttributes在两者都具有单个值或一个包含单个值而另一个包含多个值时才匹配;当两者都包含多个值时,它不会匹配它们,除非值列表相同。

要按原样使用代码,您可以更改填充PropertyGrid.BrowsableAttributes的方式:

propertygrid1.BrowsableAttributes = new AttributeCollection(
    new DisplayModeAttribute("0-1"),
    new DisplayModeAttribute("1-2")
    // etc.
);

或者,要修复您的匹配代码,您可以将其替换为以下内容:

public override bool Match(object obj)
{
    var other = obj as DisplayModeAttribute;

    if (other == null)
        return false;

    if (other.mode == mode)
        return true;

    string[] modes = mode.Split(',');
    string[] others = other.mode.Split(',');

    var matches = modes.Intersect(others);

    return matches.Count() > 0;
}

这使用LINQ Intersect方法,该方法返回两个列表共有的元素。

于 2012-09-30T16:03:18.367 回答