I saw the light .NET,Silverlight - Alexey Zakharov's Blog

Browse by Tags

All Tags » .NET » Silverlight (RSS)

MS Prism remote module loading tips by brainbox

1. Share styles between modules. Place styles and templates you want to share to app.xaml of shell project. Now you can use them in all modules, but Visual Studio and Blend will say that these styles weren't found. But it is not true =) They will work...

Little trick with partial classes. by brainbox

If you have ever look at silverlight control toolkit source you may be found that all visual states and visual state groups are stored as constants in one internal static class called visualstates. When I have started developing my own control library...
Filed under: , ,

Silverlight Tip : How to set web page title. by brainbox

If you have more than one page in your silverlight application it would be great if you will change a web page title when you switch between them. To do it you can use Silverlight DOM API. 1: var document = HtmlPage.Document; 2: document.SetProperty(...
More Posts