WPF 添加到菜单项
如果我有一个基于使用 DataTemplate 和 ItemsSource 的字符串列表的 MenuItems 列表。如何以编程方式添加另一个菜单项。添加的MenuItem不是字符串而是TextBox。这可能吗?
If I have a list of MenuItems based on a List of strings using DataTemplate and ItemsSource. How do I add another MenuItem to that programatically. The added MenuItem is not a string but a TextBox. Is this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
而不是采用字符串列表,而是采用字符串的 Observablecollection...,这样您就可以进一步添加将重新创建菜单项的新项目。
instead of taking List of strings take Observablecollection of strings... so that you can further add new items which will recreate menu items .