I have a button where I want to navigate to another page with the object of the combobox as the command parameter of the button that the user clicks. How do I reference the object in the command parameter.
<telerik:RadComboBox x:Name="arresteeListPicker" ItemsSource="{Binding Arrestees}"
DisplayMemberPath="ArresteeFullName"
Placeholder="Arrestees"
IsEditable="False">
<telerik:RadComboBox.ItemTemplate>
<DataTemplate x:DataType="model:Arrestee">
<Label Text="{Binding ArresteeFullName}"
></Label>
</DataTemplate>
</telerik:RadComboBox.ItemTemplate>
</telerik:RadComboBox>
<Button x:Name="selectArresteeBtn"
Text="Select"
Command="{Binding SelectArresteeCommand}"
CommandParameter= ?????????
WidthRequest="70"
HorizontalOptions="Start"
Margin="0, 10, 0, 0"
/>
Thank you in advance,
Scott