开发者

Bind a Dictionary<K,V> to a DropDownList

开发者 https://www.devze.com 2023-01-18 16:14 出处:网络
I was wondering why this doesn\'t work: Is it possible to declaratively bind to an Object\'s开发者_如何学Python property.

I was wondering why this doesn't work:

Is it possible to declaratively bind to an Object's开发者_如何学Python property.

<asp:DropDownList id="ddl" runat="server" 
        DataValueField="Key" 
        DataTextField="Value.DisplayName" />

Code Behind

var d = new Dictionary<int, MailAddress>();
d.Add(0,new MailAddress("foo@bar.com", "Mr. Foo");
d.Add(1,new MailAddress("bar@foo.com", "Mr. Bar");

ddl.DataSource = d;
ddl.DataBind(); // Error. It doesn't like "DisplayName"


Check out this post:

http://blogs.msdn.com/b/piyush/archive/2006/10/17/how-to-bind-generic-dictionary-with-dropdown-list.aspx

Change it to:

ddl.DataSource = d.Values; 

and:

DataTextField="DisplayName"

And it should do what you are expecting.


I think that it just uses reflection to get the property from the object you set as the data source. You could use linq to wrap your stuff in KetValuePair objects

ddl.DataSource = d.Select(r => new KeyValuePair<string, string>(r.Key, r.Value)).ToList();


If you are using the .NET MailAddress class, you can create your own class by inheriting from MailAddress, recreating the constructors you will need and overriding the ToString() method to return DisplayName instead of displayName . The just using DataTextField="Value" should work. Like this:

public class MyMailAddress : MailAddress
{

    public MyMailAddress(string emailAddress, string displayName) : base(emailAddress, displayName)
    {

    }
    public override string ToString()
    {
        return base.DisplayName;
    }
}

If you control the code to the class MailAddress, you can override the default ToString() implementation in the class and have it return the DisplayName property, the you can simply set DisplayTextField="Value" like so:

public class MailAddress
{
    public MailAddress(string emailAddress, string displayName)
    {
        _DisplayName = displayName;
        _EmailAddress = emailAddress;
    }
    public MailAddress()
    {
        _DisplayName = "";
        _EmailAddress = "";
    }

    private string _DisplayName;
    public string DisplayName
    {
        get { return _DisplayName; }
        set { _DisplayName = value; }
    }

    private string _EmailAddress;
    public string EmailAddress
    {
        get { return _EmailAddress; }
        set { _EmailAddress = value; }
    }

    public override string ToString()
    {
        return DisplayName;
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消