Browse by Tags
All Tags »
visual studio 2008 (
RSS)
Out of browser support allows Silverlight applications to run as a stand alone application out of the browser. This is especially useful if you have an application that you want to run when you are offline and unable to connect via the browser. Configuring...
Tomorrow, June 30th, is the release date for my book titled “ Game Programming with Silverlight ”. Writing this book was a great experience as it was the first book I have ever written. It was extremely time consuming mostly because it was a learning...
Animation Easing allows for you to apply built in animation functions to your Silverlight controls. The result is a variety of animation effects that make your controls move in a more realistic way. For example, you can add springiness to your controls...
From within VS you can specify which Internet browser you want launched when running your Silverlight application. Your default system browser is not affected by this setting. To make this change right click on your startup web page and choose Browse...
With the release of Silverlight 3 Beta 1 GPU (Graphics Processing Unit) acceleration (or hardware acceleration) is now available. The GPU is a processor attached to your graphics card that is generally used for calculating floating point operations. In...
Of the course of the last year I have been collecting links to some really good Silverlight tutorial blogs that I thought I would share with you. These are active blogs, frequently updated, that are specifically oriented to teaching Silverlight development...
When calculating the positions of objects such as Images make certain to use integer values not floating point values. For example, take a look at this code that centers a map around a given position: private void CenterMap( double windowWidth, double...
By default Silverlight will not download an image more than once if is contained within the image cache. That is, as long as the URI remains the same it will reference the image from the cache. So what if the image changed on the server even though it...
Unless you have had your head under a rock you probably have heard Silverlight 3 Beta 1 has been released! If you haven’t already, please install it from http://silverlight.net/getstarted/silverlight3/default.aspx This release comes packed with some of...
I recently had the opportunity to try out the controls from ComponentArt.com . I was very impressed with their ease of use, professional design and overall quality. Also, their staff are very prompt to responding to questions which made my developer experience...
I would like to announce that I am currently working on a book titled “ Silverlight Game Programming ” due to be released around June this year! You can find it on Amazon by clicking here . It’s taking most of my blogging time up so I apologize for the...
I recently stumbled across a cool tool by EnvyGames that allows you to generate sprites from 3D Models and their animation files. This tool, called SpriteWorks , is ideal for creating high quality sprite animations and one that I’ll be adding to my arsenal...
Once you have an image loaded how do you go back and get the original file name for the source file? This can be accomplished through the Uri property of the images Source . However, you must first typecast the images Source to be a BitmapImage . The...
If you ever run into this error when running your application you might be a bit perplexed by its encrypted meaning. Looking at the exceptions details you will see something like which really doesn’t help you very much: System.Windows.Markup.XamlParseException...
When it comes to drawing shapes such as rectangles you are probably fully aware you can draw shapes specifying the color and thickness of the lines. This is done via the properties StrokeThickness and Stroke . For example, take a look at the rectangle...
Next