redcalx
redcalx

Reputation: 8637

Does Mono support XAML?

Does Mono support XAML?

Specifically I'm thinking of switching to using XAML for new GUI work that I do but also I like to keep my personal projects compilable in Mono. Should I just stick with plain old System.Windows.Forms for now?

Upvotes: 14

Views: 8727

Answers (3)

Reed Copsey
Reed Copsey

Reputation: 564413

Mono supports XAML for Moonlight (the port of Silverlight), but does not, and does not plan to support WPF.

I feel that it's a good idea to keep your logic separate from your UI anyways - if you do that, you can always make sure the logic works correctly in Mono, and use WPF for your UI. If you ever decide you need to port and run on Mono, it would just be a matter of porting/implementing a UI that works with your application correctly.

Upvotes: 12

anishMarokey
anishMarokey

Reputation: 11397

MONO support XAML as Moonlight . Not WPF

Upvotes: 2

Darin Dimitrov
Darin Dimitrov

Reputation: 1038790

No, WPF is not implemented on Mono.

Upvotes: 0

Related Questions