Avalonia/readme.md

45 строки
2.2 KiB
Markdown
Исходник Обычный вид История

2014-09-09 01:55:57 +04:00
# Perspex #
2014-11-30 16:14:34 +03:00
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/grokys/Perspex?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2014-09-09 01:55:57 +04:00
2015-08-25 17:27:15 +03:00
[![Build status](https://ci.appveyor.com/api/projects/status/hubk3k0w9idyibfg/branch/master?svg=true)](https://ci.appveyor.com/project/grokys/perspex/branch/master)
2014-09-09 01:55:57 +04:00
...a next generation WPF?
2015-08-29 16:32:09 +03:00
![](docs/screen.png)
2014-12-03 01:05:50 +03:00
2014-09-09 01:55:57 +04:00
## Background ##
2015-07-24 19:21:47 +03:00
As everyone who's involved in client-side .NET development knows, the past half decade have been a
2014-09-09 01:55:57 +04:00
very sad time. Where WPF started off as a game-changer, it now seems to have been all but forgotten.
WinRT came along and took many of the lessons of WPF but it's currently not usable on the desktop.
After a few months of trying to reverse-engineer WPF with the [Avalonia Project](https://github.com/grokys/Avalonia) I began to come to the same conclusion that I imagine Microsoft
came to internally: for all its groundbreaking-ness at the time, WPF at its core is a dated mess,
written for .NET 1 and barely updated to even bring it up-to-date with .NET 2 features such as
generics.
2015-07-24 19:21:47 +03:00
So I began to think: what if we were to start anew with modern C# features such as *(gasp)*
2014-09-09 01:55:57 +04:00
Generics, Observables, async, etc etc. The result of that thought is Perspex.
##### DISCLAIMER
2015-07-24 19:21:47 +03:00
This is really early development pre-alpha-alpha stuff. Everything is subject to
change, I'm not even sure if the performance characteristics of Rx make Observables suitable for
binding throughout a framework. *I'm writing this only to see if the idea of exploring these ideas
2014-09-09 01:55:57 +04:00
appeals to anyone else.*
2014-12-13 00:04:55 +03:00
## Documentation
2015-07-24 19:21:47 +03:00
As mentioned above this is really an early version of Perspex and we're working hard on improving the code base and the documentation at the same time. Please feel free to have a look at our [introduction document](Docs/intro.md) to get things started real quick.
2015-02-05 20:28:00 +03:00
There's also a high-level [architecture document](Docs/architecture.md).
2015-02-11 14:47:07 +03:00
I've also started writing blog posts on Perspex at http://grokys.github.io/.
2015-02-05 20:28:00 +03:00
Contributions are always welcome!
2014-09-09 03:09:56 +04:00
## Building and Using
2015-07-24 19:21:47 +03:00
In order to build and use Perpex you need a compiler that supports C# 6 such as Visual Studio 2015.
2014-12-15 04:54:23 +03:00
## Contributing ##
Please read the [contribution guidelines](Docs/contributing.md) before submitting a pull request.