Nothing but .net

Silverlight: How to do navigation easily

Here's a trick to a question I have heard a few times already: how to perform easy navigation in Silverlight 1.1? This problem can be partially solved using hidden panels: you click on a button, Panel1 is hidden and Panel2 becomes visible. This is a trick that is often done in ASP.net too. ... [More]

Posted on Sunday, 30 September 2007 07:49 by gill  |  Comments (4)
Filed under:   Tips and Tricks | Silverlight

CSS: use the @import or don't use it?

When using CSS, you can link the stylesheet to your HTML using the 'link' tag (pure HTML) or you can use the @import directive. Which of these 2 is the best, one might think? Well, the answer can be determined by the browsers you are targetting with your site. The @import is currently ... [More]

Posted on Wednesday, 18 July 2007 21:13 by gill  |  Comments (2)
Filed under:   Tips and Tricks | Design