Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8553025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:33:15+00:00 2026-06-11T14:33:15+00:00

I have some files in IsolatedStorage with HTML text. How can I display this

  • 0

I have some files in IsolatedStorage with HTML text. How can I display this in the app? I’m currently using WebViewwith it’s NavigateToString("html content") property, but it doesn’t work quite well, like I can’t display any UI elements over it. Is there any alternate solution to this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T14:33:16+00:00Added an answer on June 11, 2026 at 2:33 pm

    It appears the solution is to create an image from the rendering of the html and display that instead of the actual WebView.

    From here, bold mine:

    WebView has the characteristic that other UI regions such as controls cannot be rendered on top of the WebView. This is because of how window regions are handled internally, particularly how input events are processed and how the screen draws. If you want to render HTML content and also place other UI elements on top of that HTML content, you should use WebViewBrush as the render area. The WebView still provides the HTML source information, and you reference that WebView through element name binding and the SourceName property. WebViewBrush does not have this overlay limitation.

    If you want to display an interactive WebView that only occasionally has overlapping content (such as a drop-down list or app bar), you can temporarily hide the WebView control when necessary, replacing it with an element using a WebViewBrush fill. Then, when the overlapping content is no longer present, you can display the original WebView again. For more info, see the WebView control sample.

    Example code found here:

    //create webview and rectangle
    <WebView x:Name="WebView6" /> 
    <Rectangle x:Name="Rect1"/> 
    
    //put content in the webview
    protected override void OnNavigatedTo(NavigationEventArgs e) 
    { 
    
        // Ensure that our Rectangle used to simulate the WebView is not shown initially 
        Rect1.Visibility = Windows.UI.Xaml.Visibility.Collapsed; 
    
        WebView6.Navigate(new Uri("http://www.bing.com")); 
    }
    
    //make the rectangle visible when you want something over the top of the web content
    Rect1.Visibility = Windows.UI.Xaml.Visibility.Visible;
    
    //if the rectangle is visible, then hit the webview and put the content in the webviewbrush
    if (Rect1.Visibility == Windows.UI.Xaml.Visibility.Visible) 
    { 
        WebViewBrush b = new WebViewBrush(); 
        b.SourceName = "WebView6"; 
        b.Redraw(); 
        Rect1.Fill = b; 
        WebView6.Visibility = Windows.UI.Xaml.Visibility.Collapsed; 
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some files which I can't add to svn:ignore using subclipse and I
I have some files in IsolatedStorage in my application. The file types are different,
I have some files that need to be sorted by name, unfortunately I can't
I have some files that I would like to rename using regex and powershell,
I have some files that are uuencoded, and I need to decode them, using
I have some files which are stored in IsolatedStorage. The files are of different
I have some files that were created using BSAVE in QuickBasic. I'm wondering how
I have some files, sound files (.wav and .mp3) and text files (.rtf), in
I have some files of this type: /* 78 */ Lorem ipsum dolor sit
I seem to have some files in my Xcode project that I can't erase.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.