Hey,
for a chat view I want to reverse <ScrollView>
- Is this possible anyhow?
Hey,
for a chat view I want to reverse <ScrollView>
- Is this possible anyhow?
Hi!
You can do this by aligning the content of your ScrollView
to the bottom:
<ScrollView>
<StackPanel Alignment="Bottom">
<Each Count="20">
<Rectangle Height="60" Color="#00f" CornerRadius="5" Margin="5"/>
</Each>
</StackPanel>
</ScrollView>