如何隐藏 Winforms RadScrollablePanel 的 RadControls 中的边框

发布于 2024-11-15 06:10:05 字数 147 浏览 7 评论 0原文

我有一个 RadScrollablePanel,我想隐藏边框。您可能会认为:

RadScrollablePanel1.PanelContainer.BorderStyle = BorderStyle.None;

会起作用,但事实并非如此。请帮忙!

I have a RadScrollablePanel that I want to hide the border. You'd think that:

RadScrollablePanel1.PanelContainer.BorderStyle = BorderStyle.None;

would work, but it doesnt. Please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜巴黎 2024-11-22 06:10:05

以下是您可以执行此操作的方法:

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

Here is how you can do this:

radScrollablePanel1.PanelElement.Border.Visibility =
        Telerik.WinControls.ElementVisibility.Collapsed;
半山落雨半山空 2024-11-22 06:10:05

只需设置 ElementVisibility.Collapsed 边框仍然保留:

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

我必须这样做,以使其不显示边框:

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

Just by setting ElementVisibility.Collapsed border still remained:

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

I had to do this, to get it to not show the border:

cpnlLessUsedFields.ControlsContainer.PanelContainer.BorderStyle = BorderStyle.None;
cpnlLessUsedFields.ControlsContainer.PanelElement.Border.Visibility = ElementVisibility.Collapsed;`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文