本文介绍了Windows应用程序不遵循页面设置中的顶部和底部页边距的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的页面顶部和底部的页边距不遵循我在页面设置"对话框中输入的内容.左边距,右边距都可以,但是顶部,底部边距到处都是.
在此先感谢您的帮助.我正在使用Visual Studio工具箱中的页面设置工具.

这个可以了.
MypageSetupDialog.PageSettings.Margins =新的Margins(40,40,40,40);

但是当我换成这个
MypageSetupDialog.PageSettings.Margins =新的Margins(100,100,100,100);
底部边距超过1英寸.

My page margins top and bottom dont follow what I entered in Page Setup dialogue box. The left, right margins are ok, but the top, bottom margins are all over the place.
Thanks in advance for your help. I am using the page setup tool from the visual studio toolbox.

This one works ok.
MypageSetupDialog.PageSettings.Margins = new Margins(40, 40, 40, 40);

But when I change to this
MypageSetupDialog.PageSettings.Margins = new Margins(100, 100, 100, 100);
The bottom margin is more than 1 inch.

推荐答案



这篇关于Windows应用程序不遵循页面设置中的顶部和底部页边距的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 22:49