0 out of 1 rated this helpful - Rate this topic

ListControl.SelectedValue Property

Gets or sets the value of the member property specified by the ValueMember property.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
[BrowsableAttribute(false)]
[BindableAttribute(true)]
public Object SelectedValue { get; set; }

Property Value

Type: System.Object
An object containing the value of the member of the data source specified by the ValueMember property.
Exception Condition
InvalidOperationException

The assigned value is null or the empty string ("").

If a property is not specified in ValueMember, SelectedValue returns the results of the ToString method of the object.

SelectedIndex , SelectedValue, and FormattingEnabled are related as follows:

The following code example shows the SelectedValue returning the value of the property specified by the ValueMember property. This code is an excerpt from the example shown in the ListControl class overview. See ListControl for the whole code listing.

private void ListBox1_SelectedValueChanged(object sender, EventArgs e)
{
    if (ListBox1.SelectedIndex != -1)
    {
        textBox1.Text = ListBox1.SelectedValue.ToString();
        // If we also wanted to get the displayed text we could use
        // the SelectedItem item property:
        // string s = ((USState)ListBox1.SelectedItem).LongName;
    }
}


Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Ignored non-browsable ValueMember
ValueMember is ignored if the property specified has the BrowsableAttribute set to false (as any sensible pk would). In consequence,
1 : SelectedValue returns the item (instead of the item's property)
2 : setting SelectedValue to a key value results in a null pointer exception
Different behaviour
SelectedValue always  returns null if DataSource member of ComboBox (ListControl) is null. For example, if you fill ComboBox using Items collection, SelectedValue will be null no matter what even if you specify ValueMember property.