Git - useful article about Git workflow
The following link has a useful information about managing git branches. https://www.atlassian.com/git/workflows#!workflow-gitflow
The following link has a useful information about managing git branches. https://www.atlassian.com/git/workflows#!workflow-gitflow
Canvas size is always child driven so it will give infinite size for children. Also HorizontalAlignment and VerticalAlignment settings have no effect on a ch...
The following URL shows how to create custom control with Xaml. http://blogs.msdn.com/b/mim/archive/2013/03/19/create-a-custom-user-control-using-xaml-and-c-...
MVVM light provides an easy way of the strong typed RaisePropertyChanged with lambda. The following code shows how this can find the correct string for membe...
You can initialize the member variable as shown the following in C++11. It will save a lot of typing when you have many constructors. 1 2 3 4 5 6 7 8 9 10 11...