views:

60

answers:

1

Does anyone know if Microsoft plans on implementing XAML (declarative) databinding of IronRuby objects for Silverlight and WPF? Without it, using IronRuby for Silverlight/WPF development really isn't all that compelling (IMO).

A: 

you can use databinding in WPF. That just works

And in Silverlight 4 you should be able to use databinding with DLR objects as well. If you're using Silverlight < v4 then you can still use a workaround by creating an observable dictionary in C# and storing your view data stuff in that dictionary instead of a pure ruby object.

Casual Jim