码迷,mamicode.com
首页 > Windows程序 > 详细

WPF显示Html添加WinForm的WebBrowser控件

时间:2016-11-23 10:11:57      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:orm   引用   pac   nbsp   sse   ack   sem   ros   ssi   

1.添加引用

WindowsFormsIntegration.dll  

System.Windows.Forms.dll

2.界面内容

<UserControl x:Class="HKDCMS.Client.Demo.UIViews.UIControls.AboutUsControl"
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:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
mc:Ignorable="d"
Background="White"
d:DesignHeight="300" d:DesignWidth="300">

<Grid x:Name="grid"> </Grid>

</UserControl>

3.后台代码

public partial class AboutUsControl : UserControl
{
      public AboutUsControl()
     {
         InitializeComponent();

         System.Windows.Forms.Integration.WindowsFormsHost host = new System.Windows.Forms.Integration.WindowsFormsHost();
         System.Windows.Forms.WebBrowser web = new System.Windows.Forms.WebBrowser();
         web.Url = new Uri("http://www.cnblogs.com/");//此处Uri可以是浏览器中的路径,也可以是项目中的html页面路径
         host.Child = web;
         this.grid.Children.Add(host);
     }
}

 

WPF显示Html添加WinForm的WebBrowser控件

标签:orm   引用   pac   nbsp   sse   ack   sem   ros   ssi   

原文地址:http://www.cnblogs.com/qian3344/p/6092540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!