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 80673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:20:22+00:00 2026-05-10T21:20:22+00:00

Does anyone know how to databind the .Source property of the WebBrowser in WPF

  • 0

Does anyone know how to databind the .Source property of the WebBrowser in WPF ( 3.5SP1 )? I have a listview that I want to have a small WebBrowser on the left, and content on the right, and to databind the source of each WebBrowser with the URI in each object bound to the list item.

This is what I have as a proof of concept so far, but the ‘<WebBrowser Source='{Binding Path=WebAddress}'‘ does not compile.

<DataTemplate x:Key='dealerLocatorLayout' DataType='DealerLocatorAddress'>                     <StackPanel Orientation='Horizontal'>          <!--Web Control Here-->         <WebBrowser Source='{Binding Path=WebAddress}'             ScrollViewer.HorizontalScrollBarVisibility='Disabled'              ScrollViewer.VerticalScrollBarVisibility='Disabled'              Width='300'             Height='200'             />         <StackPanel Orientation='Vertical'>             <StackPanel Orientation='Horizontal'>                 <Label Content='{Binding Path=CompanyName}' FontWeight='Bold' Foreground='Blue' />                 <TextBox Text='{Binding Path=DisplayName}' FontWeight='Bold' />             </StackPanel>             <TextBox Text='{Binding Path=Street[0]}' />             <TextBox Text='{Binding Path=Street[1]}' />             <TextBox Text='{Binding Path=PhoneNumber}'/>             <TextBox Text='{Binding Path=FaxNumber}'/>             <TextBox Text='{Binding Path=Email}'/>             <TextBox Text='{Binding Path=WebAddress}'/>         </StackPanel>     </StackPanel> </DataTemplate> 
  • 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. 2026-05-10T21:20:23+00:00Added an answer on May 10, 2026 at 9:20 pm

    The problem is that WebBrowser.Source is not a DependencyProperty. One workaround would be to use some AttachedProperty magic to enable this ability.

    public static class WebBrowserUtility {     public static readonly DependencyProperty BindableSourceProperty =         DependencyProperty.RegisterAttached('BindableSource', typeof(string), typeof(WebBrowserUtility), new UIPropertyMetadata(null, BindableSourcePropertyChanged));      public static string GetBindableSource(DependencyObject obj)     {         return (string) obj.GetValue(BindableSourceProperty);     }      public static void SetBindableSource(DependencyObject obj, string value)     {         obj.SetValue(BindableSourceProperty, value);     }      public static void BindableSourcePropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)     {         WebBrowser browser = o as WebBrowser;         if (browser != null)         {             string uri = e.NewValue as string;             browser.Source = !String.IsNullOrEmpty(uri) ? new Uri(uri) : null;         }     }  } 

    Then in your xaml do:

    <WebBrowser ns:WebBrowserUtility.BindableSource='{Binding WebAddress}'/> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know of a good Command Prompt replacement? I've tried bash/Cygwin, but that
Does anyone know of any existing packages or libraries that can be used to
Does anyone know a good Java lib that will hook into SVN so I
Does anyone know of a good method for editing PDFs in PHP? Preferably open-source/zero-license
Does anyone know a way to display code in Microsoft Word documents that preserves
Does anyone know of any JQUERY ToolTip plugins that work well in an iFrame?
Does anyone know of a Mootools script that provides nested sortable but also works
Does anyone know the function of the command vmware-vim-cmd vimsvc/connect (vimid). I thought that
Does anyone know of any resources that talk about best practices or design patterns
Does anyone know of a Ruby module that will take an integer and spell

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.