Binding on a Property which is not a DependencyProperty
A lot of controls expose properties which are not DependencyProperties and then you can’t put a binding on it. On some other cases, you only have a getter as accessor and you can’t put a binding on it...
View ArticleSimple properties Mapper by reflection : stop copying manually each property...
There is time when you have to copy each property of an object to one another. This is called mapping and it's very fastidious to do it by hand. In this post we'll see how to create a method extension...
View ArticleFreeze brushes directly in the XAML to improve your application's performances
When you read the MSDN guidelines to improce WPF's performances you can find that it's a good idea to freeze Freezable objects. It's a quite easy thing to do via the code but it's quite harder to do it...
View Article[Performance tips] Use the system shadows instead of your own
Today a fast and easy tip about shadows and performance. In a project I have recently made, we've told the designer not to use BitmapEffect because they are performance killer. He so decided to create...
View ArticleBack to Basics – Get Client Computer Name in ASP.NET
Today I had a design review meeting about a new small application that I’m participating in its development as an architect. One of the crucial features in this application was the depending on the...
View ArticleWindows Phone 7 Tip: Showing and Hiding onscreen keyboard in Emulator ©...
If you are developing any Windows Phone 7 application form and using the Emulator to run the app, you may find this tip very useful. A first time user who feels very annoying to click the mouse button...
View ArticleWPF 4.5 – Part 10 : Live shaping (live filtering, grouping and sorting of...
For each item list used in a WPF application, a collection view is in fact created and used by the controls. This view enables navigation, filtering, grouping and sorting from the XAML or the code. It...
View Article