在后台模式中调整RadPageView的右侧面板 - Telerik WinForms C#

时间:2017-09-25 13:32:07

标签: c# winforms telerik

如何在后台模式下调整RadPageView的右侧面板(显示页面列表的面板)?我需要让它的宽度变小。

enter image description here

1 个答案:

答案 0 :(得分: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