longtext - what is the best way to display long text in xaml for windows phone app -
In my project. I need to display loog texts, this is some kind of book app project. C # has a txt file but it does not look good for me. There should be more easy and adaptable ways. Do you know any other way to display long text
You can use the controls.
To use it with string.
XAM:
& lt; Phone: Web browser x: name = "web browser" />
C #:
string longtext = "balablaabla"; WebBrowser.NavigateToString (LongText);
Comments
Post a Comment