我有一个树节点,可以检查树节点。问题是我需要能够以编程方式灰显或禁用特定节点。所以例如
[] Head Node
[sub Node]
[sub Node]
[] another node 1
[] another node 2
所以我要说我检查“另一个节点2”然后它不应该消失,而是显示为灰色或禁用但仍然可见
所以看起来像这样
[] Head Node
[sub Node]
[sub Node]
[] another node 1
[X] another node 2 //and this would be disabled but still visible
我希望你明白我想做什么,不知道如何禁用它并仍然保持可见。
谢谢