Added minimal example of how CefSharp can be used. Only WPF so far.

This commit is contained in:
Per Lundberg
2013-11-12 13:14:11 +02:00
parent 4c389d8eba
commit 58792baa5e
22 changed files with 846 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<Window x:Class="CefSharp.MinimalExample.Wpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:main="clr-namespace:CefSharp.MinimalExample.Wpf.Views.Main"
Title="{Binding WebBrowser.Title}"
WindowState="Maximized">
<main:MainView/>
</Window>