Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个网络浏览器应用程序,并希望 textbox2(url 地址栏)与 webBrowser1(网页显示)同步,以便用户在页面上单击的任何内容都会出现在框中。
您可以绑定textbox2.Text到webBrowser1.Source,如下所示:
textbox2.Text
webBrowser1.Source
<TextBox x:Name="textbox2" Text="{Binding ElementName=webBrowser1, Path=Source}" /> <WebBrowser Height="160" Width="160" x:Name="webBrowser1"/>
这样,当用户更改 中的文本时textBox2,Web 浏览器也会更新它指向的页面。
textBox2