Hi,
We need to implement a screen like below in a UWP app where we need to show around 500 - 1000 steps like below.
Each step can have plain text or rich text which includes bold, italic, underline, bullet, numbering and other characters, superscript, subscript etc.. Like in this example.
And we have the data in html/xml format like below for example. We are trying to decide what is the best UWP component to use for this. Using web views for each of these steps/rows might be one option, but I have heard that web views are heavy weight and we shouldn't use them as it can cause memory issues etc.. (as we need to show 500-1000 of steps like that). Please share your thoughts on that. And what is the component you can suggest to implement this.
<p><span style="color:#000000;">Step 1 wit text </span><b><span style="color:#000000;">Aalsfs </span></b><span style="color:#000000;">sfsfls </span><i><span style="color:#000000;"><u>fsdfj </u></span></i><span style="color:#000000;">slfjdslf j</span><b><i><span style="color:#000000;"><u>sdlfkjsd</u></span></i></b><b><i><span style="color:#000000;"><u> fsdf sdfsdfsdfsdfdsf</u></span></i></b><span style="color:#000000;"> Sfs. </span><sub>SDLfsjfls </sub><span style="color:#000000;">fsdlkfjdslfsdjflsdf. </span><sup>Slskfjs </sup><span style="color:#000000;">fsflsdjfd sf sdf. </span></p><ol style="list-style-type:decimal;"><li><p><span style="color:#000000;">aa</span></p></li><li><p><span style="color:#000000;">bb</span></p></li><li><p><span style="color:#000000;">cc</span></p></li></ol><p><span style="color:#000000;"> </span></p>
Thanks,
Madhu