Metadata-Version: 2.1
Name: vbao_MVVM
Version: 0.3
Summary: A library aiming for building an MVVM (or MVFM) project
Author: Meidozuki
Project-URL: Homepage, https://github.com/Meidozuki/VBAO
Project-URL: Bug Tracker, https://github.com/Meidozuki/VBAO/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# VBAO

> A library aiming for building an MVVM (or MVFM) project

## How does it work?

We implement the data-binding, command-binding and property-change-notification to form an MVVM system.

![](img/binding.dot.jpg)

data-binding & command-binding

![](img/changing.dot.jpg)

property-change-notification

When we make it, the interaction among them is as follows.

![](img/action.dot.jpg)

### Filetree

├── qt-test

├── Lib_VBao

├── model

├── view

├── viewmodel

├── window

├── common_parameter.h

├── main.cpp

├── CMakeLists.txt

├── LICENSE

└── README.md


### Special Thanks

[Zhejiang-University-GKC/SJDXQcourseware: The courseware of SJDXQ (github.com)](https://github.com/Zhejiang-University-GKC/SJDXQcourseware)
