Xamarin Forms Right center复选框

我正在制作一个Android应用程序,并且我试图将listview中所有行的中央复选框都居中,但我做不到。 我想做这样的事情。谢谢 https://imgur.com/FhecIT3

INSTANTIATE_TEST_CASE_P
zzxx1z2x 回答:Xamarin Forms Right center复选框

尝试

<ViewCell>
       <StackLayout Orientation="Horizontal">
            <image:CircleImage Source="{Binding Imagem}" Aspect="AspectFill" WidthRequest="60" HeightRequest="60" BorderColor="Black" BorderThickness="2"> </image:CircleImage>                               
            <StackLayout Orientation="Vertical">
                 <Label Text="{Binding Nome}" FontSize="Large"/>
                 <Label Text="{Binding Zona}"/>
            </StackLayout>

            <StackLayout Orientation="Vertical" HorizontalOptions="End">
                  <CheckBox IsChecked="False" VerticalOptions="Center"/>
            </StackLayout>
       </StackLayout>
</ViewCell>
本文链接:https://www.f2er.com/3145739.html

大家都在问