We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baf1941 commit 0dd84bcCopy full SHA for 0dd84bc
CefSharp.MinimalExample.Wpf/MainWindow.xaml
@@ -10,17 +10,17 @@
10
<RowDefinition Height="Auto" />
11
</Grid.RowDefinitions>
12
<wpf:ChromiumWebBrowser Grid.Row="0"
13
- x:Name="Browser"
14
- Address="http://www.google.com" />
+ x:Name="Browser"
+ Address="http://www.google.com" />
15
<StatusBar Grid.Row="1">
16
<ProgressBar HorizontalAlignment="Right"
17
- IsIndeterminate="{Binding WebBrowser.IsLoading}"
+ IsIndeterminate="{Binding IsLoading, ElementName=Browser}"
18
Width="100"
19
Height="16"
20
Margin="3" />
21
<Separator />
22
<!-- TODO: Could show hover link URL here -->
23
- <TextBlock />
+ <TextBlock Text="{Binding Address, ElementName=Browser}"/>
24
</StatusBar>
25
</Grid>
26
</Window>
0 commit comments