My data context object contains a string property that returns html that I need to display in WebBrowser control; I can't find any properties of WebBrowser to bind it to. Any ideas?

Thanks!

link|improve this question

feedback

1 Answer

up vote 17 down vote accepted

The WebBrowser has a NavigateToString method that you can use to navigate to HTML content. If you want to be able to bind to it, you can create an attached property that can just call the method when the value changes:

public static readonly DependencyProperty HtmlProperty = DependencyProperty.RegisterAttached(
    "Html",
    typeof(string),
    typeof(PinnedInstrumentsViewModel),
    new FrameworkPropertyMetadata(OnHtmlChanged));

[AttachedPropertyBrowsableForType(typeof(WebBrowser))]
public static string GetHtml(WebBrowser d)
{
    return (string)d.GetValue(HtmlProperty);
}

public static void SetHtml(WebBrowser d, string value)
{
    d.SetValue(HtmlProperty, value);
}

static void OnHtmlChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
    WebBrowser wb = d as WebBrowser;
    if (wb != null)
        wb.NavigateToString(e.NewValue as string);
}

And you would use it like so:

<WebBrowser lcl:BrowseBehavior.Html="{Binding HtmlToDisplay}" />
link|improve this answer
Second argument for OnHtmlChanged should be of type DependencyPropertyChangedEventArgs. – Adam L Aug 26 '10 at 17:38
Adam, You are right, fixed to reflect that. Thanks! – Abe Heidebrecht Aug 30 '10 at 14:16
I added this to my code but it does not allow me to edit (a required feature). I am fairly new to wpf so I am unsure of what to change to allow me to edit the html. – scott.smart Dec 21 '11 at 20:50
The WebBrowser control displays HTML. If you want to be able to edit the HTML, you will have to use another control, like TextBox or RichTextBox. – Abe Heidebrecht Jan 19 at 16:32
feedback

Your Answer

 
or
required, but never shown

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