質問

Is there any way to Maximize the Print Preview Dialogue?

I could not see any Maximize property on the controls at properties window.

役に立ちましたか?

解決

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

他のヒント

For C#:

(PrintPreviewDialog1 as Form).WindowState = FormWindowState.Maximized;
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top