Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrphil2105/mvvmelegance
An elegant and powerful ViewModel-First MVVM framework for Avalonia, inspired by Stylet.
https://github.com/mrphil2105/mvvmelegance
avalonia avaloniaui conductor desktop model-view-viewmodel mvvm screen viewmodel viewmodel-first
Last synced: 2 months ago
JSON representation
An elegant and powerful ViewModel-First MVVM framework for Avalonia, inspired by Stylet.
- Host: GitHub
- URL: https://github.com/mrphil2105/mvvmelegance
- Owner: mrphil2105
- License: mit
- Created: 2022-03-21T17:20:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T23:38:09.000Z (9 months ago)
- Last Synced: 2024-11-02T09:39:33.571Z (2 months ago)
- Topics: avalonia, avaloniaui, conductor, desktop, model-view-viewmodel, mvvm, screen, viewmodel, viewmodel-first
- Language: C#
- Homepage:
- Size: 186 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MvvmElegance
============[![NuGet](https://img.shields.io/nuget/v/MvvmElegance.svg)](https://www.nuget.org/packages/MvvmElegance/)
Introduction
------------MvvmElegance is an elegant and powerful ViewModel-First MVVM framework for Avalonia. It makes development easier by:
- providing essential MVVM primitives like `Screen`, `Conductor`, `EventAggregator`, and more
- launching dialog windows and message boxes easily with the `ViewService` class
- providing asynchronous methods for common operations on MVVM primitives
- disabling button clicking while calling asynchronous methods on your view models with Actions
- avoiding view-types in view models by splitting the framework into multiple projects.The project is inspired by [Stylet](https://github.com/canton7/Stylet) and provides many of the same types, but split into two separate projects:
a project you reference in your ViewModel-project and another used with your View-project. This ensures that no view-types are ever used in your view models.Getting Started
---------------
To get started using MvvmElegance in your project follow the [Quick Start](https://github.com/mrphil2105/MvvmElegance/wiki/Quick-Start) guide (currently in the works).Documentation
-------------For a comprehensive documentation of MvvmElegance visit the [Wiki](https://github.com/mrphil2105/MvvmElegance/wiki) (currently in the works). The most up-to-date information is presented there.
Contributing
------------Feel free to contribute to the project. [Raise an issue](https://github.com/mrphil2105/MvvmElegance/issues) if you have a problem or a question.
Please read the Wiki for the [Contributing guidelines](https://github.com/mrphil2105/MvvmElegance/wiki/Contributing) (currently in the works), if you want to contribute code to the project.