2021-08-01 17:24:15 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ViewCell xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2024-04-09 12:53:23 +02:00
|
|
|
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
|
|
|
|
x:Class="ShareeBike.View.MiniSurvey.Question.CheckOneViewCell">
|
2021-08-01 17:24:15 +02:00
|
|
|
<ViewCell.View>
|
|
|
|
<Frame>
|
|
|
|
<StackLayout>
|
|
|
|
<Label
|
|
|
|
FontSize="Medium"
|
|
|
|
Text="{Binding QuestionText}" />
|
|
|
|
<Picker
|
|
|
|
Title="{x:Static resources:AppResources.MiniSurveyAskForAnswer}"
|
|
|
|
SelectedItem="{Binding AnswerText}"
|
|
|
|
ItemsSource="{Binding AnswersText}"/>
|
|
|
|
</StackLayout>
|
|
|
|
</Frame>
|
|
|
|
</ViewCell.View>
|
|
|
|
</ViewCell>
|