本文介绍了最大化打印预览?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么方法可以最大化打印预览对话?
Is there any way to Maximize the Print Preview Dialogue?
在属性窗口的控件上看不到任何最大化属性.
I could not see any Maximize property on the controls at properties window.
推荐答案
在属性页面中不可用,因为您必须将PrintPreviewDialog强制转换为Form才能访问这些Form属性:
It's not available in the properties page because you have to cast the PrintPreviewDialog to a Form in order to access those Form properties:
DirectCast(PrintPreviewDialog1, Form).WindowState = FormWindowState.Maximized
这篇关于最大化打印预览?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!