up vote 4 down vote favorite
1
share [g+] share [fb]

I have a ComboBox whose items are set using the DataSource property. The DataSource is a collection of a custom object (that has a string property 'Value' and int property 'Id'). In the initialise controls, I set the DisplayMember as Value and ValueMember as Id. Now I tried to clear the DataSource by calling,

myComboBox.DataSource = null;

When I did that, my DisplayMember is reset to "" automatically. Am I clearing the DataSource properly ?? Is that the way I should behave ???

link|improve this question
feedback

1 Answer

I can reproduce it... it isn't something I would have expected, but it looks like you'll simply have to set the DisplayMember back afterwards.

Looking in reflector, this is quite intentional:

        if (value == null)
        {
            this.DisplayMember = "";
        }

Not sure of the reasoning behind that, but simply:

string oldDisplayMember = cbo.DisplayMember;
cbo.DataSource = null;
cbo.DisplayMember = oldDisplayMember;

Not pretty, but it'll work.

link|improve this answer
So its how it should behave, isn't it ??? – Sudarsan Srinivasan Mar 13 '09 at 8:20
Well, "functions as written" ;-p But it does violate a few typical property behaviours (i.e. unexpected side-effects). – Marc Gravell Mar 13 '09 at 8:23
feedback

Your Answer

 
or
required, but never shown