vote up 0 vote down star

I'm using a WPF WebBrowser control to preview HTML typed by the user.

example...

WPF TextBox and WebBrowser controls

But, how do I made the WebBrowser control read-only? I don't want the user to be clicking links in there and navigating away from the preview page.

I want my users to create links. I just want to make sure the "preview" pane is a preview of the correct page.

flag

65% accept rate

4 Answers

vote up 1 vote down

You will have to sanitize the input.

Do not allow anchor or script tags or on attributes. (I don't know if you can disable javascript on the control, but that would be a good idea to.

link|flag
This won't work for my purpose. I want my users to create links. I just want to make sure the "preview" pane is a preview of the correct page. – Zack Peterson Dec 19 '08 at 16:54
Oh, I see. That's quite the pickle. – EndangeredMassa Dec 19 '08 at 17:08
vote up 4 vote down

Can't you just place a transparent window over the entire control and capture all the mouse and keyboard events there?

link|flag
vote up 2 vote down

Maybe you can catch the control's click event and throw it away before it tries to navigate to the link? I'm not sure if it's possible but I'd try that.

link|flag
The WebBrowser control has no Click event, but rather a Navigating event. See my answer for full solution. – Zack Peterson Dec 19 '08 at 20:09
vote up 1 vote down check

Capture the Navigating event of the WebBrowser control and set the Cancel property of its NavigatingCancelEventArgs to True.

Visual Basic code...

Private Sub WebBrowser1_Navigating(...) Handles WebBrowser1.Navigating
    If WebBrowser1Locked Then
        e.Cancel = True
    End If
End Sub

This requires a global locking boolean variable.

Partial Public Class Window1
    Dim WebBrowser1Locked As Boolean = True
    ...
End Class

And locking and unlocking to be wrapped around the desired navigation.

WebBrowser1Locked = False
WebBrowser1.NavigateToString("...")
WebBrowser1Locked = True
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.