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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 124k
  • Answers 124k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Are you running on OS 3.0? I saw the same… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer It looks like you need to register Apache::Session::Memcached with Apache::Session::Wrapper,… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer Use DATENAME or DATEPART: SELECT DATENAME(dw,GETDATE()) -- Friday SELECT DATEPART(dw,GETDATE())… May 12, 2026 at 1:19 am

Related Questions

If I want to display an underlined value in a TextBlock, I have to
I'm creating a custom script control in ASP.NET The purpose of the control is
Does anyone know how to get IntelliSense to work reliably when working in C/C++
Does anyone know how to transform a enum value to a human readable value?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.