AutoCompleteEdit.ChosenSuggestion Property
Gets the selected suggestion in the drop-down list.
Namespace: DevExpress.XamarinForms.Editors
Assembly: DevExpress.XamarinForms.Editors.dll
NuGet Package: DevExpress.XamarinForms.Editors
Declaration
public object ChosenSuggestion { get; }
Property Value
Type | Description |
---|---|
Object | An object that specifies the selected suggestion in the drop-down list. |
Example
The code below shows how to bind the ChosenSuggestion
property to a property in the bound data source.
<dxe:AutoCompleteEdit ChosenSuggestion="{Binding SelectedItem, Mode=OneWayToSource}">
<!--...-->
</dxe:AutoCompleteEdit>
See Also