管理从数据库表中获取并存储在 WPF 应用程序中的所有数据的最佳方法
您好,我正在尝试找到管理应用程序中的数据(来自数据库中的表)的最佳方法。
我的主要问题是,要成功使用绑定、通知属性/集合更改,最好的方法是什么?
我的应用程序是管理企业中各种事物的库存,所以我将数据收集到我的应用程序中,然后我使用 DataViews 来存储它?但这是我可以使用绑定和通知更改的最佳方法吗?
我最近进入 WPF(大约 2 个月),ViewModel 的概念是我现在想要理解的,因为似乎这是用于管理 WPF 应用程序中存储的数据的最多的东西。或者也许我理解全错了。
我要求的是建议和例子,以便我了解哪种方法是最好的方法。
注意:就我而言,我有一个带有 DataGrid 的主窗口,其中有 DataGridTextColumns 和 DataGridComboBoxColumns,并且我有辅助窗口来使用 ListView 管理类别、位置等。
提前致谢!
Hi i am trying to find the best way to manage the Data (that comes from tables in a Database) in your App.
My main question is, what is the best approach to take to then i successfully work with Bindings, Notifying Properties/Collections Changes?
My App is to manage the Inventory of all kind of things in an Enterprise, so i collect the Data to my App, and then i am using DataViews to store it? But this is the best approch to then i can work with bindings and Notifying Changes?
I am recently entering in WPF (about 2 months), the concept of ViewModel it's what i am trying to understand now, because seems that is the most thing used to manage the Data stored in an WPF App. Or maybe i am understanding all wrong.
What I am asking is for advices and examples to then i understand which is the best aprroach.
Note: In my case i have a Main Window with a DataGrid which have DataGridTextColumns and DataGridComboBoxColumns, and i have auxiliary Windows to manage Categories, Places and etc with ListViews.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我们谈论 WPF 时,当然我们谈论的是 MVVM 模式,它是最好的方式:)
此链接是 MVVM 模式的最佳起点:
MVVM 初学者< /a>
When we are talking about WPF, then of-course we are talking about MVVM pattern, its the best way :)
This link is the best start point for MVVM pattern:
MVVM for Beginners