Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Telerik winform 页面浏览控件我如何将标签设置为像谷歌浏览器标签一样倾斜。默认情况下它们是垂直的。它是我需要设置的图像属性还是属性?我试过telerik论坛,但似乎没有人问过类似的问题。
图片显示下面的示例
以下是如何达到预期效果:
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 }