Вопрос

Using telerik winform pageview control how can i set the tab to be angled like the google chrome tabs.They are vertical by default. Is it an image property i need to set or a property?. I have tried the telerik forum but noone seems to have asked a similar question.

Image showing sample below

enter image description here

Это было полезно?

Решение

Here is how to achieve the desired effect:

        TabVsShape shape = new TabVsShape();
        shape.RightToLeft = true;
        foreach (RadPageViewPage p in radPageView1.Pages)
        {
            p.Item.Shape = shape;
            p.Item.MinSize = new Size(65, 0); //if you need to increase the page item size
        }
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top