我想以编程方式设置预览(FastReport.Net mvc)控件的缩放模式属性。
我通过这种方法实现了这一点但是我收到了这个错误:
类型'System.Windows.Forms.UserControl'在未引用的程序集中定义。您必须添加对程序集的引用 'System.Windows.Forms,Version = 4.0.0.0,Culture = neutral, 公钥= b77a5c561934e089' 。
webReport.Report.Preview.ZoomPageWidth();
答案 0 :(得分:0)
这是我通过本规范处理此问题的方式:
第一个解决方案
webReport.Zoom = 0.85f;
第二个解决方案
webReport.Height = System.Web.UI.WebControls.Unit.Percentage(95);