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.
我正在使用 WPF 和 MVVM 模式,我需要将元素从 ViewModel 附加到窗口。场景是:用户将有一组文本框模拟表格的字段来插入产品,并且会有一个按钮来添加更多行。我的问题只是创建一种使此按钮起作用的方法。我怎样才能做到这一点 ?
有没有更好的方法来解决这样的问题?需要一次添加多个实体向表中添加行?
提前感谢您的帮助。
在绑定到 ItemsControl 的视图模型中使用 ObservableCollection。在按钮单击事件上,将新对象添加到集合中。UI 将被通知另一个对象已添加到集合中并呈现新行。