Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Selector::SelectedValuePath Property

 

Gets or sets the path that is used to get the SelectedValue from the SelectedItem.

Namespace:   System.Windows.Controls.Primitives
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
[BindableAttribute(true)]
[LocalizabilityAttribute(LocalizationCategory::NeverLocalize)]
property String^ SelectedValuePath {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The path used to get the SelectedValue. The default is an empty string.

The SelectedValuePath property specifies the path to the property that is used to determine the value of the SelectedValue property.

Identifier field

SelectedValuePathProperty

Metadata properties set to true

None

The following example binds a ListBox to a collection of Employee objects. The example sets SelectedValuePath to @EmployeeNumber and SelectedValue to 12345. This selects the Employee that has 12345 as the value of EmployeeNumber. This example also binds a TextBlock to the SelectedValue of the ListBox. When the user changes the selection in the ListBox, the TextBlock is updated to show the employee number of the currently selected employee.

.NET Framework
Available since 3.0
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft