2017-09-25 113 views

回答

1

您可以设置宽度&高度尺寸是这样的:

this.radPageView1.GetChildAt(0).GetChildAt(0).MinSize = new System.Drawing.Size(400, 0); 

screenshot

还设置大小,像这样的设计师:

点击RadPageView Task然后更改Item Area Width

screenshot

要设置保证金为RadPageView使用本:

this.radPageView1.GetChildAt(0).GetChildAt(0).Margin = new System.Windows.Forms.Padding(-20, 0, 0, 0); 

同时设定边缘有这样的设计师:

点击RadPageView Task然后Edit UI Element然后点击StripViewItemContainer变化margin

screenshot

+0

@aghailpro谢谢你,太棒了。我没有注意到RadPageView的任务:(但还有另一个问题,如何从右侧或左侧更改页边距,目前这些项目离右侧太远,我需要让它们的页边距变小吗? – Nofuzy

+1

@Nofuzy you很受欢迎,回答更新(正如你可以看到左侧空间被移除)。 – aghilpro