I have a Expander with a nested ScrollViewer as showm below:
Code (simplified version)
<Expander.Content> <ScrollViewer VerticalScrollBarVisibility="Auto" > <StackPanel Orientation="Vertical"> <TextBox FontSize="16" BorderThickness="0" IsReadOnly="True" Background="Transparent" Foreground="MidnightBlue" TextWrapping="Wrap" Text="{Binding LoggingMessage, Mode=OneWay}"> </TextBox> /StackPanel> </ScrollViewer> </Expander.Content> </Expander> I need to change the side of the ScrollViewer, so its shown on the LEFT side.
what is the simplest solution to this?