博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF 开发常见问题
阅读量:6038 次
发布时间:2019-06-20

本文共 666 字,大约阅读时间需要 2 分钟。

1、怎样在WPF中使用Windows窗体控件(如水晶报表)

我们可以使用WindowsFormsHost元素在WPF中载入一个Windows Forms控件,下面的这个例子展示了如何载入一个CrystalReportViewer元素:

<Window

  x:Class="ForumProjects.MainWindow"

  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

  xmlns:c="clr-namespace:CrystalDecisions.Windows.Forms;assembly=CrystalDecisions.Windows.Forms"

  Title="MainWindow" Width="800" Height="600">

    <WindowsFormsHost>

        <c:CrystalReportViewer x:Name="MyCrystalReportViewer" Width="300" Height="300"/>

    </WindowsFormsHost>

</Window>

 

 

参考:

本文转自Work Hard Work Smart博客园博客,原文链接:http://www.cnblogs.com/linlf03/archive/2011/11/14/2248267.html,如需转载请自行联系原作者

你可能感兴趣的文章
innobackupex 在增量的基础上增量备份
查看>>
Windows Server 2012 R2 DirectAccess功能测试(2)App1服务器安装及配置
查看>>
基于清单的启动器的实现
查看>>
外网用户通过citrix打印慢的解决方法
查看>>
STL容器的使用
查看>>
关于std::map
查看>>
JXL导出Excel文件兼容性问题
查看>>
VBoot1.0发布,Vue & SpringBoot 综合开发入门
查看>>
centos7 安装wps 后 演示无法启动
查看>>
git简单命令
查看>>
LAMP编译部署
查看>>
XenDesktop7.6安装部署入门教程
查看>>
HashMap的工作原理及HashMap和Hashtable的区别
查看>>
GregorianCalendar日历程序
查看>>
Sublime 中运行 Shell 、Python、Lua、Groovy...等各种脚本
查看>>
Selenium的 WebDriverWait 研究
查看>>
Liferay 中部署portlet的细节窥探
查看>>
制作Windows Server 2003/08 image详细步骤与OpenStack介绍
查看>>
007-df和du的使用
查看>>
springIOC学习笔记
查看>>