Relative Content

Tag Archive for xaml

How to make the button on the same row as the workout name

<ViewCell> <Frame BorderColor=”#AC94C9″ WidthRequest=”3″ BackgroundColor=”Transparent” CornerRadius=”30″ Padding=”-10″ Margin=”20″ > <Grid Padding=”30″> <Label Text=”{Binding WorkoutName}” FontAttributes=”Bold” HeightRequest=”10″ FontSize=”22″ Grid.Row=”0″ Grid.Column=”0″/> <ImageButton CommandParameter=”{Binding .}” HorizontalOptions=”End” Margin=”5″ HeightRequest=”30″ Grid.Row=”0″ BackgroundColor=”Transparent” Source=”purple_bin.png”> </ImageButton> I want the bin image to be on the same row as the workout name. Also I wanted to ask is it generally bad to use […]