Devexpress Report Service 使用方法

这个工具就不用多说了,反正功能强大。

主要记录工作中遇到的问题解决方式,不在于宣传、传播!

在服务器端添加 Dev Report Service ,然后建立报表,这里不多说。

 <add name="xpf.printing" connectionString="xpoprovider=MSSqlServer;data source=(localdb)\v11.0;Initial Catalog=D:\test.MDF;integrated security=True;connect timeout=120" />

连接字符串要改下


SL中客户端 调用代码如下:


void DevReportControl_Loaded(object sender, RoutedEventArgs e)
        {
            var mode = new ReportServicePreviewModel("../../StockReportService.svc");  //这个服务器的SVC地址
            mode.ReportName = "LightSwitchApplication.StockListReport";//报表的全名称
            this.documentViewer1.Model = mode;
            documentViewer1.AutoCreateDocument = true;
        }

你可能感兴趣的:(Devexpress Report Service 使用方法)