Czy ktoś wie, jak databind właściwości .Source WebBrowser w WPF (3.5SP1)? Mam widok listy, w którym chcę mieć małą przeglądarkę internetową po lewej stronie i zawartość po prawej stronie oraz powiązać z danymi źródło każdego WebBrowser z identyfikatorem URI w każdym obiekcie powiązanym z elementem listy.
To jest to, co mam do tej pory jako dowód słuszności koncepcji, ale " <WebBrowser Source="{Binding Path=WebAddress}"
" się nie kompiluje.
<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>