Delphi:CoolBar的切换频段
在切换时更改 CoolBar(红色矩形)中的按钮(带)的有效方法是什么TreeView 中的项目(紫色矩形)。我想对列表视图中的每个项目使用一组按钮。
感谢您的帮助和建议!
What is an efficient way to change buttons (bands) in the CoolBar (the red rectangle) while switching among items in the TreeView (the purple rectangle). I want to use one set of buttons for every item in the list view.
Thanks for help and advices!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将创建所需的 CoolBand,并将每个 CoolBand 分配给要使用它的 TTreeNode 的数据指针。然后在 TreeView 的 OnChanging 处理程序中,我会“记住”当前选择的 TreeNode 并在 OnChange 处理程序中切换 CoolBands 的可见性:
I'd create the CoolBands I'd need and assign each to the Data pointer of the TTreeNode for which it is to be used. Then in the TreeView's OnChanging handler, I'd "remember" the TreeNode that is currently selected and switch visibility on the CoolBands in the OnChange handler: