31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<UserControl x:Class="CefSharp.MinimalExample.Wpf.Views.MainView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="640"
|
|
d:DesignHeight="300">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<cefSharp:ChromiumWebBrowser Grid.Row="0"
|
|
Address="http://www.google.com"
|
|
WebBrowser="{Binding WebBrowser, Mode=OneWayToSource}"
|
|
Title="{Binding Title, Mode=TwoWay}" />
|
|
<StatusBar Grid.Row="1">
|
|
<ProgressBar HorizontalAlignment="Right"
|
|
IsIndeterminate="{Binding WebBrowser.IsLoading}"
|
|
Width="100"
|
|
Height="16"
|
|
Margin="3" />
|
|
<Separator />
|
|
<!-- TODO: Could show hover link URL here -->
|
|
<TextBlock />
|
|
</StatusBar>
|
|
</Grid>
|
|
</UserControl>
|