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.
如何保存树节点上的值?我正在使用 C# Windows 窗体框架 4.0。标签是唯一保存价值的地方吗?我需要保存窗口名称,以便在用户单击它时打开窗口。
如果您需要在树节点中存储多个值,那么最好的方法是TreeNode通过继承您的类来扩展它,并使用您自己的树节点。
TreeNode
public class YourTreeNode : TreeNode { public string WindowName { get; set; } }
或者只是标签并将窗口名称存储在名称中。