對不起 - 我的問題幾乎與this one相同,但由於它沒有收到可行的答案,我希望別人有一些新的想法。 我具有被綁定到單個類型的層次結構的樹視圖WPF: public class Entity
{
public string Title { get; set; }
public ObservableCollection<Entity> Children { get; set;
我正在使用wxPython製作python樹可視化工具。它會像這樣使用: show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another child')) ])
它工作正常,但它顯示了一個值爲「樹」的根。我做到了這樣,它