Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストにn個の従業員名があります
1 2 3 . . n
この詳細をtreeview1のようにバインドしたい
1 -2 -3 . . ---...n
これを行う方法。誰でもこのコードを貼り付けることはできますか?
ノード クラスには、親ノードへの参照が含まれている必要があります。
public class Node { public Node parent; public Node(Node NewParent){ this.parent=NewParent; } }
ルートを除くすべてのノードは、親としてノードを持つ必要があります。ルートの場合、親ノードは null に設定する必要があります。