mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
19 lines
761 B
Text
19 lines
761 B
Text
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<ViewCell xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
||
|
x:Class="TINK.View.MiniSurvey.Question.CheckOneViewCell">
|
||
|
<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>
|