Search Results

1
vote

What is the best reference for architecting Silverlight applications?

I personally haven't seen any best practice guidance out there discussing this however I could make a few recommendations myself but it depends on the type of application being developed. T …
1
vote

Automatically page between silverlight controls

I'd go with a single Silverlight 2 application and do all the paging inside the control. You can see an example of how to switch between Silverlight controls on my old blog post over …
0
votes

Good resource for learning Silverlight 2 Development?

I'd recommend the Sparkling Client podcast and it even features the infamous …
0
votes

Silverlight 2 development using just Visual Studio?

And now you can even use Eclipse. :) …
2
votes

Embed a website/page into Silverlight

Yes, it can be done and its quite easy to do. I plan on blogging about my HtmlBrowser control and posting the source. The basics are to make sure the Silverlight control is hosted with the isWindow …
0
votes

How Do You Handle Validation In Silverlight?

You might want to look at PostSharp, it makes attributing your client-side data model very simple. …
1
vote

Silverlight: How to set default style in generic.xaml for child class?

I don't believe inherited styling is supported as it is in CSS. You can only create a style for a specific target type. Then on the instance you need to nominate the style. However you are …
-2
votes

Aynchronous web server calls in Silverlight and maximum HTTP connections

Firstly the Machine.config file would not be used as the Silverlight control is sandboxed with its own version of the CoreCLR. I believe that the Silverlight control actually makes use of t …
1
vote

Silverlight 2 UI pattern

You might want to look at CSLA.NET for Silverlight. I've heard good things about it but haven't gotten around to try it yet myself. …
1
vote

Silverlight image: load URL dynamically?

From what I gather you aren't trying to change the image itself dynamically, but rather to correctly determine the location of the image at runtime. I believe simply prefixing the image rel …
6
votes

Is the Silverlight 2 Bible worth purchasing?

I'm rather waiting for Programming Silverlight 2 by Jesse Liberty and Tim Heuer. Update: Se …
1
vote

Use Silverlight Isolated Storage To Keep Authentication Token?

Other than the advantage of sharing the token across multiple browser instances, which I personally haven't ever seen the need for, I think I'll stick to using cookies for now. Why? Because they ar …
3
votes

does silverlight support remoting?

Due to the security requirements of being sandboxed in the host web browser, binary serialization is not supported. So no, .NET Remoting is not supported. Thank goodness we have a fairly sufficient …
1
vote

Using Windows Azure Service Bus From Silverlight

I've looked at the November 2008 CTP code and getting the EchoService client to work from Silverlight is highly unlikely due to the dependancy on the NetTcpRelayBinding and Silverlight's limited TC …