How to add scroll in a textBox in windows 8 app?

c#, windows-8

Solution

Add a scrollviewer into the XAML. Then set the margins of the scrollviewer by cutting and pasting that of the textbox, and set the height and width of textbox to `auto`.

Problem

I want to add a scroll viewer in a textBOX in a windows 8 app. So that user can scroll through his long text

Original source