Here is what I still have.
When the phone is upright:
When the phone is horizontal:
Here is my XAML markup:
<StackPanel Margin="19 0 19 5"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="110" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Image Grid.Column="0" Source="{Binding ImageUrl}" Stretch="Uniform" Margin="0 10 0 10"/> <StackPanel Grid.Column="1" Margin="14 0 0 0"> <TextBlock Text="{Binding Title}" FontSize="30" /> <TextBlock Text="{Binding ReleaseDate}" FontSize="22" Foreground="#E0A655"/> <TextBlock Text="{Binding Synopsis}" FontSize="22" TextWrapping="Wrap"/> </StackPanel> </Grid> <Line StrokeThickness="4" Stroke="#434343" X1="0" X2="350" Y1="13" Y2="13" /> </StackPanel>
I would like the line to be the same as it is now, but with the center. But also, when the phone is horizontal, the line should be slightly larger to access the wider space available to it.
Is it possible?
Only Bolivian Here
source share