Browse by Tags

Silverlight 3 is out
Thu, Jul 9 2009 21:32
Incredible… version 3 is out and I still didn’t had the time to look at version 2. I guess I’ll jump write into 3 (or 4, if things keep going this way :) ). btw, here’s the link for the VS tools . Read More...
by luisabreu | with no comments
Filed under:
Silverlight 2.0 is out
Tue, Oct 14 2008 15:38
I’ve just seen this on Scott Hanselman’s blog . I’ll make an effort to look at it, though I’m still not convinced about it… Read More...
by luisabreu | with no comments
Filed under:
Silverlight 2 RC is out
Sun, Sep 28 2008 14:40
I was keen on Silverlight more than a year ago, but unfortunately I've stopped studying it since I just had to work in other areas. It seems like now is the time to pick up where I left since Scott has announced the release of SL 2.0 R. Read More...
by luisabreu | with no comments
Filed under:
Silverlight 2.0 beta 1 is out
Wed, Mar 5 2008 22:30
So, while I was busy playing with my new HTC Touch , it seems like MS has presented Silverlight 2.0 beta 1 . Now, this is really a tough choice... Read More...
by luisabreu | with no comments
Filed under: ,
Xaml and Media controls: giving them a new chance
Tue, Nov 20 2007 21:35
A long (long) time ago I've downloaded one of the ASP.NET future CTPS and was really annoyed with the Xaml and Media controls. Why? simple: they injected object tags on the page instead of generating JS code to perform those operations. The problem: you got one of those nasty "click to activate" messages when the page was hosted on IE. Now that... Read More...
by luisabreu | with no comments
Filed under: ,
Hebrew and Arabic Silverlight support
Sat, Oct 27 2007 22:24
Justin-Josef has built a new codeplex project that aims to support Hebrew and Arabic text rendering on Silverlight. There are already some support materials over Justin's site that will help you get started: online lab and demo 20 min, web cast complete tutorial Nice work Justin! Read More...
by luisabreu | with no comments
Filed under:
Configuring IIS for hosting Silverlight 1.1
Fri, Sep 28 2007 19:41
From time to time there's always a new post asking on how to configure IIS to host Silverlight content. I've already written something about it, but I'd like to point you to a more complete reference which can be found here: http://silverlight.net/forums/t/479.aspx Read More...
by luisabreu | with no comments
Filed under:
Silverlight pages and VS integration
Tue, Sep 25 2007 23:01
Have you noticed that you can navigate from the "code-behind" file (cs file) to the designer by right clicking the page and choosing "View designer" (from the context menu that is shown when you perform right click), but there's isn't any option for going from the xaml page to the cs code file associated with it? am I blind? Read More...
by luisabreu | with no comments
Filed under:
How to share code between Silverlight and other kinds of applications?
Tue, Sep 25 2007 21:47
I really haven't looked at any Silverlight code for at least 2 months. In fact, I haven't really been around the forums until today. Now that I've returned :), I've noticed that there's a lot of similar questions around sharing code between .NET and the "mini-CLR" that is used Silverlight. The first thing you should notice is that... Read More...
by luisabreu | with no comments
Filed under:
Silverlight: understanding namescopes
Fri, Aug 17 2007 15:37
Today i was starting to write about silverlight namescopes but then I've found this cool post which talks about most of the things i was writing about. btw, i'd just like to add that when you use the XamlReader.Load method, you can also create a new namescope by using the overloaded version that receives 2 parameters (the second parameter lets you specify... Read More...
by luisabreu | with no comments
Filed under:
How to test your Silverlight quickly
Fri, Aug 17 2007 15:32
When you create a Silverlight project, you'll automatically get an HTML file that you can open in the browser to run some quick tests. Unfortunately, the file is opened directly from the file system instead of being served from a web server. This means that some things don't work and you'll need to create a web site to test them (ex.: getting a video... Read More...
by luisabreu | with no comments
Filed under:
Silverlight: first PT project goes live
Sat, Aug 11 2007 13:28
I've just noticed that the first portuguese Silverlight project has gone live. Media preview.tv was built with Silverlight 1.1 and shows some of the cool things you can do with it. if you have the time, check it out . Read More...
by luisabreu | with no comments
Filed under:
Silverlight: working with text
Wed, Aug 1 2007 14:31
In the last days i've been busy...thinking about my vacations which are coming :) I thought i'd write an article and submit it to a site, but i wouldn't have the time to format it. so, i've given up on the idea and i'm putting it here instead . The article presents the main features Silverlight gives you for working with text. There's... Read More...
by luisabreu | with no comments
Filed under:
Silverlight: the XAML ASP.NET control and embeded XAML
Wed, Jul 25 2007 11:30
Even though the Xaml's XamlUrl porperty seems to indicate that it can only load XAML from an existing url, the truth is that you can also pass it a reference to a XAML excerpt which is embeded on the page. here's a quick example of how you can do this: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs"... Read More...
by luisabreu | 2 comment(s)
Filed under:
Silverlight: building a simple progress bar
Wed, Jul 25 2007 10:51
When you're developing a Silverlight application, you'll surelly be in a situation where you need to download stuff before starting your app. In these cases, you should play nice with the user and give them some indications regarding what's going on. The most common thing to do in these scenarios is to show a progress bar. Building a progress bar... Read More...
by luisabreu | with no comments
Filed under:
Silverlight: error code explained
Tue, Jul 24 2007 23:09
A cool reference about the errors you might get on silverlight pages can be found here . Enjoy! Read More...
by luisabreu | 6 comment(s)
Filed under:
Silverlight: the AG_E_RUNTIME_MANAGED_ASSEMBLY_DOWNLOAD error
Mon, Jul 23 2007 22:34
Quick tip: if you have this error, then you've got the wrong name for your assembly in the xmlns namespace introduced on the xaml file. Quick example: xmlns:la="clr-namespace:Silverlight.Controls;assembly= ClentBin /SilverlightProgressBar.dll" Notice the ClentBin (instead of ClientBin) typo... Read More...
by luisabreu | 3 comment(s)
Filed under:
Silverlight: compensating movement changes on animations
Wed, Jul 18 2007 12:10
Another experience I've run today was related with compensating direction changes on animations. Here's the scenario: suppose you've got a rectangle and you want it to move from x to y when something happens and then from y to x when another thing happens. The main problem is that the change in direction might happen before the previous running animations... Read More...
by luisabreu | 1 comment(s)
Filed under:
Silverlight: the parenthesis () do matter!
Wed, Jul 18 2007 10:58
Today I needed to animate a Rectangle so that it moved from left to right. Like all sane people, I've right clicked the xaml file and chose open in blend. Building the animation was really a complex operation: I only needed a pair of clicks and the rectangle was moving :) . Unfortunately, the code blend generates sucks a lot. In order to build the animation... Read More...
by luisabreu | with no comments
Filed under:
We need a new release of Siverlight right now!
Mon, Jul 16 2007 12:13
And one where cross-domain calls do work! I'm not a game programmer. I'm not even a designer. so, many of the features available are of no good to me. Cross-domain calls are off, which means that I cannot build components which agregate info from different domains. It really sucks! Please, help ups and release a new version with cross-domain support!... Read More...
by luisabreu | with no comments
Filed under:
More Posts Next page »