Home / Archive: June 2009

| RSS

Silverlight Predefined Colors – What Color Are They?

While writing Silverlight applications, I find it challenging to pick colors from the list of predefined colors supported by Silverlight. Honestly I don’t know what those fancy colors look like. There! I said it!. Happy? To overcome this issue in true developer style, I wrote a small utility which shows all predefined colors on a [...]

[ More ] June 30th, 2009 | No Comments | Posted in Programming |

Silverlight Wrap Panel

Wrap panel in Silverlight is missing out of the box, but this need is fulfilled by Silverlight Toolkit which also includes many other controls. In this post we will look at WrapPanel. I will show you how to use it and what it is used for.
To use wrap panel you have to install Silverlight Toolkit. [...]

[ More ] June 28th, 2009 | No Comments | Posted in Programming |

Silverlight Canvas Panel

Panels are basic layout mechanism in both Silverlight and WPF. They act as containers for other controls and each panel provides a different way of laying out controls on the screen. In this post we will look at Canvas Panel in Silverlight. Canvas allows us to put controls based on x and y  coordinates. This [...]

[ More ] June 25th, 2009 | No Comments | Posted in Programming |

Request Error In ADO.NET Data Services

When creating a new ADO.NET Data Service you may find yourself with this error.

Don’t call it quits on ADO.NET Data Services because of this error. It is very easy to fix. Have a close look at the code generated by Visual Studio for you.

Here the code calls SetEntitySetAccessRule on “MyEntitySet” but most likely [...]

[ More ] June 16th, 2009 | No Comments | Posted in Programming |