BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<combobox:SfComboBox HeightRequest="40"
x:Name="comboBox"
EnableSelectionIndicator="True"
MultiSelectMode="Token"
IndicatorTextColor="Red"
IndicatorFontFamily="{StaticResource BoldFont}"
IndicatorText="">
<combobox:SfComboBox.TokenSettings>
..
</combobox:SfComboBox.TokenSettings>
<combobox:SfComboBox.ComboBoxSource>
<ListCollection:List x:TypeArguments="x:String">
<x:String>France</x:String>
…
</ListCollection:List>
</combobox:SfComboBox.ComboBoxSource>
</combobox:SfComboBox> |
private void ComboBox_SelectionChanged(object sender, Syncfusion.XForms.ComboBox.SelectionChangedEventArgs e)
{
ObservableCollection<object> item = new ObservableCollection<object> { e.Value };
} |