| 123456789101112131415161718192021222324252627282930 |
- <Window x:Class="Xilium.CefGlue.Samples.WpfOsr.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:wpf="clr-namespace:Xilium.CefGlue.WPF;assembly=Xilium.CefGlue.WPF"
- Title="MainWindow"
- Width="700"
- Height="500">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="25" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <TextBox Name="addressTextBox"
- Grid.Row="0"
- KeyDown="addressTextBox_KeyDown_1"
- Text="" />
- <wpf:WpfCefBrowser x:Name="browser"
- Grid.Row="1"
- StartUrl="http://www.google.com">
- <!--
- <xi:WpfCefBrowser.RenderTransform>
- <TransformGroup>
- <ScaleTransform ScaleX="0.8" ScaleY="0.8" CenterX="400" CenterY="300" />
- <RotateTransform Angle="-10" CenterX="400" CenterY="300" />
- </TransformGroup>
- </xi:WpfCefBrowser.RenderTransform>
- -->
- </wpf:WpfCefBrowser>
- </Grid>
- </Window>
|