其他分享
首页 > 其他分享> > devexpress report 展示

devexpress report 展示

作者:互联网

设计完report 后,想通过大demo 里边找到入口不好找,那个whatmoduls之类的 藏起来了,不过还是通过控件组合找到了

一个跳窗的方式,自带toolbar 

 ReportA cdr = new ReportA ();
ReportPrintTool tool = new ReportPrintTool(cdr);
tool.ShowPreview();

一个是放到窗体内,非跳窗展示的方式,自己设计toolbar 然后report 加载到documentview 内

拖一个documentViewer1 到窗体内

 

  documentViewer1.UseAsyncDocumentCreation = DefaultBoolean.True;
            documentViewer1.DocumentSource = cdr;
         documentViewer1.InitiateDocumentCreation();

 

标签:展示,devexpress,tool,跳窗,documentViewer1,cdr,report,new
来源: https://www.cnblogs.com/zuochanzi/p/16343975.html