A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Kai Eichinger a5d56fd5e8 Splitted first block into a new "documentary" section. Added "building and using" section 11 years ago
Cairo/Perspex.Cairo Make Home key work in multi-line text boxes. 11 years ago
Docs Updated intro.md 11 years ago
Gtk/Perspex.Gtk Make mono stuff work (kinda) again. 11 years ago
NGenerics Started refactoring lyaout. 11 years ago
Perspex.Application Started refactoring lyaout. 11 years ago
Perspex.Base Added coercion to PerspexProperties. 11 years ago
Perspex.Base.UnitTests Added coercion to PerspexProperties. 11 years ago
Perspex.Controls Cancel TextBox selection on cursor movement. 11 years ago
Perspex.Controls.UnitTests Updated NuGet packages. 11 years ago
Perspex.Diagnostics Removed debug code. 11 years ago
Perspex.Input Added IsEnabled. 11 years ago
Perspex.Interactivity More stylecop fixes. 11 years ago
Perspex.Layout Fix another problem in layout. 11 years ago
Perspex.Layout.UnitTests Removed ITextService. 11 years ago
Perspex.SceneGraph Make Home key work in multi-line text boxes. 11 years ago
Perspex.SceneGraph.UnitTests Initial implementation of GTK windowing system. 11 years ago
Perspex.Styling More stylecop fixes. 11 years ago
Perspex.Styling.UnitTests Initial implementation of GTK windowing system. 11 years ago
Perspex.Themes.Default Styled ToggleButton. 11 years ago
TestApplication Added TextWrapping setting. 11 years ago
TestFiles Fixed failing test. 12 years ago
Windows Make Home key work in multi-line text boxes. 11 years ago
.gitattributes Initial commit 12 years ago
.gitignore Added Gtk to VS/windows solutions 11 years ago
Perspex-Linux.userprefs Initial implementation of GTK windowing system. 11 years ago
Perspex-Mono.sln Initial implementation of GTK windowing system. 11 years ago
Perspex-Mono.userprefs Finally rendering text on linux! 11 years ago
Perspex.sln Added unit test to test breakage. 11 years ago
Settings.StyleCop Stylecop fixes. 11 years ago
licence.md Added licence.md 11 years ago
readme.md Splitted first block into a new "documentary" section. Added "building and using" section 11 years ago

readme.md

Perspex

![Gitter](https://badges.gitter.im/Join Chat.svg)

...a next generation WPF?

Background

As everyone who's involved in client-side .NET development knows, the past half decade have been a 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 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.

So I began to think: what if we were to start anew with modern C# features such as (gasp) Generics, Observables, async, etc etc. The result of that thought is Perspex.

DISCLAIMER

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 appeals to anyone else.

Documentary

Like mentioned above this is really an early version of Perplex and we're working hard on improving the code base and the documentary at the same time. Please feel free to have a look at our introduction document to get things started real quick. Contributions are always welcome!

Building and Using

In order to build and use Perpex you need a compiler that supports the upcoming C# 6 features.

  • Visual Studio 2015 Preview: The recommended way to compile C# 6 code is to use the new Visual Studio 2015 Preview version, which Microsoft has released later this year. It comes with the new Roslyn compiler and features like the new upcoming JIT (RyuJIT) and other improvements like extensible code analysis right out of the box. It can be downloaded here

  • Visual Studio 2013: With the introductory of the new Roslyn compiler platform earlier this year Microsoft has released an April End User Preview which is a small extension that brings supports to Visual Studio 2013.
    NOTE: This extension is out of date and will no longer be updated, according to the Roslyn CodePlex main page. However, if you don't want to use a Preview IDE feel free to download the extension over here. It must be noted that it is not guaranteed that future versions of Perplex will compile and run when using this extension.