This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using System.Globalization; | |
namespace Awesomium.Core | |
{ | |
/// <summary> | |
/// Utility class that allows loading of Awesomium.NET assemblies, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Application | |
x:Class="MyWPFSample.App" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:awe="http://schemas.awesomium.com/winfx" | |
xmlns:local="clr-namespace:MyWPFSample"> | |
<Application.Resources> | |
<ResourceDictionary> | |
<!-- MyWebMenuListItem --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Window | |
x:Class="AwesomiumCSharpWpfApplication.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:awe="http://schemas.awesomium.com/winfx" | |
Title="MainWindow" | |
Height="350" | |
Width="525"> | |
<Grid> | |
<awe:WebControl x:Name="Browser" /> |