Files
obsidian-notes/3Resources/Unity/MVVM.md
zzzisfunnyboy 4dbfd25f3f 1
2025-06-16 21:39:44 +08:00

10 lines
331 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

结论比一般的在属性中直接设置Text文本更复杂小型项目没有必要
需要一个View一个ViewModel
绑定使用表达式树封装成Action
- 需要定义数据到UI显示的格式化
- bindingSet.For(view=>view.SetText)
- 需要定义绑定哪个字段
- bindingSet.To(viewModel=>viewModel.XXX)