久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

【轉(zhuǎn)】WPF中嵌入WinForm中的webbrowser控件

 風中Robin 2012-06-21

【轉(zhuǎn)】WPF中嵌入WinForm中的webbrowser控件

使用VS2008創(chuàng)建WPF應用程序,需使用webbrowser,。從工具箱中添加WPF組件中的webbrowser發(fā)現(xiàn)其中有很多屬性事件不能使用,。決定還是使用WinForm中的webbrowser。要想在WPF中使用WinForm控件,,查看MSDN,,需經(jīng)過以下步驟。
  1. 創(chuàng)建名為 HostingWfInWpf 的 WPF 應用程序項目,。

  2. 在解決方案資源管理器中,,添加一個對名為 WindowsFormsIntegration.dll 的 WindowsFormsIntegration 程序集的引用,。

  3. 在解決方案資源管理器中,添加一個對名為 System.Windows.Forms.dll 的 Windows 窗體程序集的引用,。

  4. 在 WPF 設計器中打開 Window1.xaml,。

  5. 用以下 XAML 替換 Window1.xaml 中自動生成的 XAML。

<Window x:Class="HostingWfInWpf.Window1"
    xmlns="    xmlns:x="    Title="HostingWfInWpf"
 Loaded="WindowLoaded"
    >
    <Grid Name="grid1">

    </Grid>
</Window>
6.在代碼編輯器中打開 Window1.xaml.cs,。
7.將 Window1.xaml.cs 中的代碼替換為以下代碼,。

 

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Shapes;

using System.Windows.Forms;

namespace HostingWfInWpf
{  
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        private void WindowLoaded(object sender, RoutedEventArgs e)
        {
            // Create the interop host control.
            System.Windows.Forms.Integration.WindowsFormsHost host =
                new System.Windows.Forms.Integration.WindowsFormsHost();

            // Create the MaskedTextBox control.
            MaskedTextBox mtbDate = new MaskedTextBox("00/00/0000");

            // Assign the MaskedTextBox control as the host control's child.
            host.Child = mtbDate;

            // Add the interop host control to the Grid
            // control's collection of child controls.
            this.grid1.Children.Add(host);
        }
    }
}

此處,將MaskedTextBox換成System.Windows.Forms.WebBrowser即可,。

    本站是提供個人知識管理的網(wǎng)絡存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多