1
vote
Farseer Physics Tutorials, Help files
Andy Beaulieu has beein doing a lot of work to make Farseer easier to use in Silverlight, you can read about it here:
…
2
votes
How Do I Give a Textbox Focus in Silverlight?
Are you sure you're not really getting focus? There's a known bug in Beta 2 where you'll get focus and be able to type but you won't get the caret or the border. The workaround is to call UpdateLay …
0
votes
How Do I Give a Textbox Focus in Silverlight?
I forgot one thing...I haven't found a way to force focus to your Silverlight application on the page reliably (it will work on some browsers and not on others).
So it may be that the Silv …
3
votes
Sprite / Character animation in Silverlight (v2)
You can use the Clip property on the image itself or on a container for the image to display a specific piece of a larger image, like a sprite sheet. This may or may not be more performant than swa …
0
votes
How do I call a WCF webservice from Silverlight?
You wouldn't happen to be running from the filesystem would you? If you are serving up the silverlight application your local machine and not using the VS Web Server or IIS, you won't be able to ma …
4
votes
Full screen mode in silverlight
You can set
Application.Current.Host.Content.IsFullScreen = true;
this has to be done from a mouse button event or a click, you can't force the user into full screen wi …
3
votes
Is it possible to create and then upload an Image file to a web server from silverlight?
You can't render a canvas to a bitmap in Silverlight 2, but if you could generate a XAML version of your Canvas, you could pass it to the server and do something like this server side:
…
4
votes
Working with Silverlight B2 and RC0
A VM is really the only solution I've heard of so far for this. Hopefully we won't be in this limbo for too horribly long.
One thing you could do to make the VM a bit smaller is if you do …
2
votes
Are standard .Net 2 dlls compatible with the silverlight 2.0 runtime?
No, you will still need to recompile against the Silverlight versions of the assemblies. You can add these files to a Silverlight Class Library project "as link", sharing the same file between both …
1
vote
Disabling a EventTrigger\Storyboard Dynamically
The only trigger currently available in Silverlight is "Loaded", for all other events you'll have to write a bit of code. To use this technique, Storyboards should go in the Resources section inste …
3
votes
Silverlight: Empty Storyboard vs BackgroundWorker
There's a new option in RC0, it's the CompositionTarget.Rendering event. It seems to have promise for being the best option.
As for other game loop methods, it's generally accepted that the …
1
vote
Sending a mouse click to a button in silverlight 2
You can't make the Click event fire for security reasons, because then you would be able to do things like force a user into full screen mode without them knowing it. As Oli said, you could call th …
8
votes
Alternative IDE for Silverlight
Visual Web Developer Express SP1 is supported with RC0 and later. Install it first, then install the tools.
…
4
votes
Online game: Macromedia Flash or Microsoft Silverlight and why?
Ok so Tim called me out on this one, it's a tough question. I wouldn't do something that massive in Flash unless I was using someone else's engine to do the heavy lifting, I couldn't imagine writin …
1
vote
Silverlight 2 development using just Visual Studio?
I've heard rumours that since there is no Expression Blend Express or Expression Blend Light that there will at least for a while always be a version of Blend in a "Preview" state and the next one …
