Ivan Porto Carrero
2009-Jul-15 09:15 UTC
[Ironruby-core] databinding for Silverlight and/or WPF
Hi are there .NET properties generated in the underlying CLR type when you define an attribute on a ruby class? class Photo attr_accessor :id, :title, :secret, :farm, :server end would that generate a CLR class that has those attributes as properties? Will that work in silverlight too? --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Blog: http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action (http://manning.com/carrero) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090715/d1fb994b/attachment.html>
Tomas Matousek
2009-Jul-15 15:29 UTC
[Ironruby-core] databinding for Silverlight and/or WPF
No, it won?t generate CLR class unless your class implements an interface or derives from a CLR type. And even if it does attributes don?t define CLR properties. We don?t support defining CLR members on a Ruby class yet, but we should in future. Tomas From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Ivan Porto Carrero Sent: Wednesday, July 15, 2009 2:16 AM To: ironruby-core Subject: [Ironruby-core] databinding for Silverlight and/or WPF Hi are there .NET properties generated in the underlying CLR type when you define an attribute on a ruby class? class Photo attr_accessor :id, :title, :secret, :farm, :server end would that generate a CLR class that has those attributes as properties? Will that work in silverlight too? --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Blog: http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action (http://manning.com/carrero) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090715/e35810b2/attachment.html>
Jimmy Schementi
2009-Jul-15 16:55 UTC
[Ironruby-core] databinding for Silverlight and/or WPF
Though you can databind against ruby attributes on the desktop: take a look at my railsconf blogpost ... There''s a section about databinding against active record. This does not work in Silverlight though. It might work in SL4 since WPF 4 has specific databinding support for dynamic objects, and that code will most likely be ported over. ~Jimmy Sent from my phone On Jul 15, 2009, at 8:30 AM, "Tomas Matousek" <Tomas.Matousek at microsoft.com<mailto:Tomas.Matousek at microsoft.com>> wrote: No, it won?t generate CLR class unless your class implements an interface or derives from a CLR type. And even if it does attributes don?t define CLR properties. We don?t support defining CLR members on a Ruby class yet, but we should in future. Tomas From: ironruby-core-bounces at rubyforge.org<mailto:ironruby-core-bounces at rubyforge.org> [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Ivan Porto Carrero Sent: Wednesday, July 15, 2009 2:16 AM To: ironruby-core Subject: [Ironruby-core] databinding for Silverlight and/or WPF Hi are there .NET properties generated in the underlying CLR type when you define an attribute on a ruby class? class Photo attr_accessor :id, :title, :secret, :farm, :server end would that generate a CLR class that has those attributes as properties? Will that work in silverlight too? --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Blog: <http://flanders.co.nz> http://flanders.co.nz Twitter: <http://twitter.com/casualjim> http://twitter.com/casualjim Author of IronRuby in Action (<http://manning.com/carrero>http://manning.com/carrero) _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org<mailto:Ironruby-core at rubyforge.org> http://rubyforge.org/mailman/listinfo/ironruby-core -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090715/979bca1d/attachment.html>