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.
TreeNode をサブクラス化すると、それを TreeView 内の Nodes コレクションに追加できることがわかっています。しかし、私が現在取り組んでいる TreeView はデータバインドされています。TreeView にそのノードのタイプを伝える方法はありますか?
タナクス、
ジョー
理解した。TreeView をサブクラス化し、CreateNode メソッドをオーバーライドするだけです。
public class PermissionsTreeView : TreeView { protected override TreeNode CreateNode() { return new PermissionsTreeNode(); } }