如何更改XtraTreeView的层次结构显示样式?

发布于 2024-10-14 06:47:45 字数 433 浏览 2 评论 0原文

我有一个 XtraTreeView 控件,已从 9.2 升级到 10.2。层次结构过去以“经典方式”显示 - 即。 + 展开,- 折叠,如下图所示: http://documentation.devexpress.com/HelpResource.ashx?help=WindowsForms&document=img1103.jpg

但是,在 10.2 中,他们将其更改为+ 已替换为 >(如遥控器上的播放按钮)以展开,以 v 替换以折叠。有什么办法可以恢复吗?

I have an XtraTreeView control that I've upgraded from 9.2 to 10.2. The hierarchy used to be displayed in the 'classic way' - ie. + to expand, - to collapse, like in this picture: http://documentation.devexpress.com/HelpResource.ashx?help=WindowsForms&document=img1103.jpg

However, in 10.2, they've changed it so the + has been replaced by > (like the play button on a remote) to expand and v to collapse. Any way to revert it?

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

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

发布评论

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

评论(1

卷耳 2024-10-21 06:47:45

您应该更改 TreeList 的 LookAndFeel 属性来解决此问题。例如:

LookAndFeel.UseDefaultLookAndFeel  = false;
LookAndFeel.SkinName  = "Caramel";

You should change the TreeList's LookAndFeel property to resolve this problem. For example:

LookAndFeel.UseDefaultLookAndFeel  = false;
LookAndFeel.SkinName  = "Caramel";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文