简体   繁体   中英

Resizing right panel of RadPageView in backstage mode - Telerik WinForms C#

How can I resize right panel (panel which shows pages list) of RadPageView in backstage mode? I need to make it smaller in width.

在此处输入图片说明

You can set width & height size like this:

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

截屏

Also set size with designer like this:

Click on RadPageView Task then change Item Area Width

截屏

To set margin for RadPageView use this :

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

Also set margin with designer like this:

Click on RadPageView Task then Edit UI Element then click on StripViewItemContainer change margin

截屏

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM