I saw the light Tips & Tricks - Alexey Zakharov's Blog

Browse by Tags

All Tags » Tips & Tricks (RSS)

Silverlight Tips & Tricks: Make Silverlight DataGrid be more MVVM friendly =) by brainbox

Today one guy from our dev team met some problems with binding of datagrid selected items. Because of SelectedItems is readonly property, we cannot create two way binding for it. After a short discussion we decided to create DataGridSelectedChanged command...

Silverlight Tip: Cannot change namespace of App class by brainbox

For rather long period of time I wonder why if you change namespace of App class Silverlight application stop working. Solution to this problem is very simple: 1. Open silverlight application properties dialog. 2. Select new startup object : YourNamespace...

Silverlight Tip: Splash screen issues. by brainbox

Today I worked on silverlight splash screen for our site and found that documentation about splash screen is very poor and cause many misunderstandings. In this post i'll try to make some of them disappear. =) Because of silverlight splash screen is managed...

Resharper live template for Dependency Properties by brainbox

Writing of Silverlight and WPF dependency properties is very annoying process. But with resharper live templates you can change the situation. Here you can download my version of such template and import to your resharper. Create dependency properties...

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