WPF 和 Winform 是兩個單獨的平臺,但兩者又都是基於 .NET 4.0 以上版本開發的,因此不少.NET開發人員就開始研究如何在WPF中使用Winform。微軟已經架設了兩個開發平臺的之間的通訊橋樑,目前爲止兩者相互轉換使用已經至關成熟了,今天主要給你們講講如何在這兩個平臺下調用 ComponentOne 的控件。佈局
本文主要用 FlexReport .NET報表控件,做爲介質進行兩個平臺的連接flex
首先,咱們仍是把兩個平臺的基本通訊通道搭建起來,很簡單,網上有不少步驟,總結起來主要分三步:spa
<Window x:Class="CrossBowDemo.MainWindow" xmlns:wfi ="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:wf ="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Hosting Windows Forms Control In WPF" Height="300" Width="650" ResizeMode="NoResize" Loaded="WindowLoadedHandler"> < /Window>
解釋一下,這段代碼真正起做用的是這個引用WindowsFormsIntegration.dll,而這個引用System.Windows.Forms 指的是Winform裏面的微軟的原生態控件,因此在用到ComponentOne時,能夠不引用它。code
咱們先看一個示例:經過微軟原生態控件在WPF中使用Winform,代碼以下:component
<wfi:WindowsFormsHost> <wf:DataGridView x:Name="Dg" Dock="Fill" SelectionMode="FullRowSelect"> </wf:DataGridView> </wfi:WindowsFormsHost>
WindowsFormsHost實際上是Winform在WPF的容器,因此Winform的控件顯示都要在這個容器裏面。orm
上面咱們說了,咱們以FlexReport爲介質進行通訊,那咱們須要準備的幾個小步驟:xml
注意:這裏面的引用是Winform的引用。一樣,咱們須要在xmal中引用:圖片
xmlns:cc11="clr-namespace:C1.Win.FlexViewer;assembly=C1.Win.FlexViewer.4"
在佈局中添加可供報表預覽的控件ip
<Grid> <wfi:WindowsFormsHost> <cc11:C1FlexViewerPane x:Name="flexViewerPane" ></cc11:C1FlexViewerPane> </wfi:WindowsFormsHost> </Grid>
咱們在後臺加載報表ci
private C1FlexReport _report; public Window1() { InitializeComponent(); _report = new C1FlexReport(); // load report definition from resources Assembly asm = Assembly.GetExecutingAssembly(); using (Stream stream = asm.GetManifestResourceStream("WpfApp1.Resources.FlexCommonTasks.flxr")) _report.Load(stream, "Chart2D"); // assign report to the preview pane flexViewerPane.DocumentSource = null; flexViewerPane.DocumentSource = _report; }
注:切記,這裏面的報表是Winform平臺下的
到這一步,咱們工做完成了一大半,還差最後一步點石成金的步驟。不少人覺得在這就結束了,可是咱們要考慮 ComponentOne License 受權的問題,如何把Winform 的受權在WPF下注冊,其實很簡單,由於 .NET 的license機制同樣,咱們只需用一樣的方式去註冊控件的license ,不過這裏推薦手動註冊,這很重要,由於一不當心,就會報lc.exe=-1的錯誤
這裏咱們都用到了
因此咱們在license文件中寫以下注冊信息
C1.Win.FlexReport.C1FlexReport, C1.Win.FlexReport.4 C1.Win.FlexViewer.C1FlexViewerPane, C1.Win.FlexViewer.4
至此,咱們就大功告成了。
示例源碼下載
本文中的示例源碼,請點擊此處下載
ComponentOne Enterprise:.NET開發的「瑞士軍刀」,功能全面、簡單易用的 Visual Studio 組件集