|
|
-
|
|
This feature allows you to save log information from IntelliTrace window itself. While viewing the intellitrace log information, if we wants to save it into a log file, we can save it by clicking "Save" icon in Intellitrace window.
![alt text][1]
Note...
|
|
-
|
|
When this features is enabled, IntelliTrace will save log based on user preference, instead of saving log file for each and every debugging session. This will save your good amount of hard drive from many unnecessary IntelliTrace log.
1. Go to Debug ->...
|
|
-
|
|
Visual Studio 2010 provides various set of tools to debug and view simultaneously running threads. By using Parallel Stacks window and threads window, we can find the information about the threads that are currently in executing.
Suppose below code wil...
|
|
-
|
|
Visual Studio 2010 ultimate provides a feature "Intellitrace", which helps to developers to get information about the errors, which are difficult to produce. Enabling the intellitrace will provide you the detailed trace information, which records all th...
|
|
-
|
|
Visual studio 2010 provides an important feature, "Bookmarks", which can be used to mark the certain locations in code and use them for later reference.
You can create a bookmark by pressing Ctrl+k,Ctrl+k on a line. On creating a bookmark, this will c...
|
|
-
|
|
In Visual Studio 2010, we can import external styles and change the look and feel of visual studio. We can find some styles in "http://studiostyl.es"
1. Go to "http://studiostyl.es" and download any of the style.
2. In VS 2010, Go to Tools -> Import an...
|
|
-
|
|
Visual Studio 2010 provides various Code Refactoring options. Few of these are
1. **ReName:** Often while developing, we would like to rename the method names/field names etc. When it is named, in all places it has to be changed. Visual Studio provides...
|
|
-
|
|
This is very interesting feature in Silverlight 5. PivotViewer control will be helpful in viewing large collections of data. This control reminds the look and feel like Excel pivot. By using this control, large collections of data can be filtered by usi...
|
|
-
|
|
We often use In-Built markup extensions such as Binding, Static Resource, Template Binding and Relative Source. We will use these markup extensions with curly braces {}. Now in Silverlight 5, we can also write our own Custom Markup Extensions.
Implem...
|
|
-
|
|
In WPF, when datacontext of a control changes, it will provide an explicit event, so we can track changes when the datacontext changes. But until silverlight 4, we don't have this event. Silverlight 5, now provides the datacontext changed event. When da...
|
|