I have a ListView
<StackLayout Margin="12"
Padding="24"
BackgroundColor="White"
HorizontalOptions="Center"
VerticalOptions="Center">
<StackLayout >
<ListView x:Name="IzberiFirmaListView" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label TextColor="Black" Text="{Binding Title}"></Label>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
<StackLayout Orientation="Horizontal">
<Button Text="Save" BackgroundColor="#76C3D7" TextColor="White" Clicked="OnSave"></Button>
<Button Text="Cancel" BackgroundColor="Red" TextColor="White" Clicked="OnCancel"></Button>
</StackLayout>
MY class have two parameters Id and Title. In my scenario user must select one item from the list view and then when press on save button pass choosen Id from the class. Any suggestions how to organize?