0
It is possible to have 2 fields in a Picker
? Today I have a Category listing and I would like to be able to put the Category Code in front.
The XAML code of Picker
:
<Picker x:Name="pckCategoria"
Title="Selecione uma Categoria"
ItemDisplayBinding="{Binding CATEGORIA}"
FontSize="Small"
Margin="10, 0, 10, 0">
</Picker>
If it is not possible to bring the two contents on picker
I can simply receive the Category Code when a Category is selected too, it would already be an output, but so far I could not do, I’ve seen a lot of content but none could meet me.
Could you give an example?
– Deivid Souza
I added a very simple example to the answer.
– Neto Costa