Re: Invalid XML (addendum)

2010-08-01 Thread .net noobie
there is a code sample to download at the bottom of the blog post On Sun, Aug 1, 2010 at 9:36 PM, Greg Keogh wrote: > > http://www.cauldwell.net/patrick/blog/MVVMBindingToCommandsInSilverlight.aspx > > here is a plain/no frills example of Silverlight 3 "ICommand" button > service > > very plain,

RE: Invalid XML (addendum)

2010-08-01 Thread Greg Keogh
http://www.cauldwell.net/patrick/blog/MVVMBindingToCommandsInSilverlight.asp x here is a plain/no frills example of Silverlight 3 "ICommand" button service very plain, no junk, just an example for how to hook up a command to a button in SL 3 I downloaded the code and ran it and it worked fine fo

Re: Invalid XML (addendum)

2010-08-01 Thread Miguel Madero
If you can use System.Interactivity, I would suggest to use a CallMethodAction Behavior instead of Commands. On Sun, Aug 1, 2010 at 6:16 PM, .net noobie wrote: > > http://www.cauldwell.net/patrick/blog/MVVMBindingToCommandsInSilverlight.aspx > > here is a plain/no frills example of Silverlight 3

Re: Invalid XML (addendum)

2010-08-01 Thread .net noobie
http://www.cauldwell.net/patrick/blog/MVVMBindingToCommandsInSilverlight.aspx here is a plain/no frills example of Silverlight 3 "ICommand" button service very plain, no junk, just an example for how to hook up a command to a button in SL 3 I downloaded the code and ran it and it worked fine for

RE: Invalid XML (addendum)

2010-07-31 Thread Greg Keogh
http://slextensions.codeplex.com/SourceControl/changeset/view/35533#395012 OK! I manually copied over Command, CommandService, CommandSusbcription and some other related EventArgs classes to my project. Following the sample XAML in their project which binds a Button to a command in the controll

Re: Invalid XML (addendum)

2010-07-30 Thread .net noobie
http://slextensions.codeplex.com/SourceControl/changeset/view/35533#395012 On Fri, Jul 30, 2010 at 8:41 AM, Greg Keogh wrote: > here is a version/code sample online > > http://silverlight-essentials.com/blog/?p=55 > > "Ext

RE: Invalid XML (addendum)

2010-07-29 Thread Greg Keogh
here is a version/code sample online http://silverlight-essentials.com/blog/?p=55 "ExtendedInvokeCommandAction" Whew! This almost worked. After 15 minutes of stuffing around references and adding the ExtendedInvokeCommandAction class to my project I managed to get the Command appearing in Ble

Re: Invalid XML (addendum)

2010-07-29 Thread .net noobie
here is a version/code sample online http://silverlight-essentials.com/blog/?p=55 "ExtendedInvokeCommandAction" On Thu, Jul 29, 2010 at 10:22 PM, .net noobie wrote: > > add a ref to "System.Windows.Interactivity" > you should find "InvokeCommandAction" in that Assembly > > On Thu, Jul 29, 2010 a

Re: Invalid XML (addendum)

2010-07-29 Thread .net noobie
add a ref to "System.Windows.Interactivity" you should find "InvokeCommandAction" in that Assembly On Thu, Jul 29, 2010 at 4:21 PM, Greg Keogh wrote: > > Can you use an InvokeCommandAction (see the Behaviors category in Blend. > > > > That behaviour isn’t in Blend 3 and I can’t yet find it onlin

RE: Invalid XML (addendum)

2010-07-28 Thread Greg Keogh
Can you use an InvokeCommandAction (see the Behaviors category in Blend. That behaviour isn't in Blend 3 and I can't yet find it online or in the gallery - Greg ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify

Re: Invalid XML (addendum)

2010-07-28 Thread Miguel Madero
Can you use an InvokeCommandAction (see the Behaviors category in Blend. Could you do it in Blend 4? Things are way better with the new XamlParser. On Thu, Jul 29, 2010 at 8:32 AM, Greg Keogh wrote: > I should mention that I’ve been suffering the same Blend 3 designer red > box of death for wee