如何在Radforms控件中为Winforms RadScrollablePanel隐藏边框

时间:2011-06-13 00:44:32

标签: winforms telerik border rad-controls

我有一个RadScrollablePanel,我想隐藏边框。你认为:

RadScrollablePanel1.PanelContainer.BorderStyle = BorderStyle.None;

会起作用,但它没有。请帮忙!

2 个答案:

答案 0 :(得分:3)

以下是如何执行此操作的方法:

radScrollablePanel1.PanelElement.Border.Visibility =
        Telerik.WinControls.ElementVisibility.Collapsed;

答案 1 :(得分:0)

只需设置ElementVisibility.Collapsed边框仍然存在:

cpnlLessUsedFields.ControlsContainer.PanelElement.Border.Visibility = ElementVisibility.Collapsed; 

我不得不这样做,让它不显示边界:

cpnlLessUsedFields.ControlsContainer.PanelContainer.BorderStyle = BorderStyle.None;
cpnlLessUsedFields.ControlsContainer.PanelElement.Border.Visibility = ElementVisibility.Collapsed;`