Just in time for the Academy Awards, this post sounds more like a movie title (similar to Death Wish III) than a post asking for new features. But here it is, my "wish list" for features in Silverlight Version "Next". 1) Setting the default file name and location in the print dialog. a) This item […]
Silverlight Charting: Displaying Data Above the Column
When displaying a column chart, you may want to display the column value above the column in the chart. Something like this: This prior post sets the ground work for displaying a chart. This post covers how to modify the chart to display text above each column. Like most other changes to the chart columns, […]
Silverlight Charting: Setting the Tooltip
By default, Silverlight charts display a tooltip when the user hovers over the chart but it is not very fancy. Here is an example: So it says 97. Is that a count? Number of points? Percent? This prior post sets the ground work for displaying a chart. This post covers how to modify the tooltip […]
Silverlight Charting: Setting Colors
When working with charts, by default the built-in styling sets the chart colors. But there may be times that you want to control the colors. This post covers a technique for manually setting the chart colors. This prior post sets the ground work for displaying a chart. This current post adds color definition to the […]
Silverlight Simple MVVM Printing
Many users want to print information from your line of business (LOB) application. This post covers the simple case where the user wants to print a copy of what they see on the screen. But instead of putting the print code in the code behind file, it follows a Model-View-View/Model (MVVM) approach. NOTE: This post […]
Visual Studio Live! Conference in Las Vegas
There is so much to know these days with all of the new technologies, techniques, and tools in Visual Studio and the .NET framework. How do you even decide which technologies deserve your attention and which you can "give a miss"? One of the benefits of a technical conference like Visual Studio Live! is to […]
Silverlight MVVM Commanding II
This prior post introduced commanding in Silverlight for use with MVVM. However, the built-in Silverlight commanding only works for controls that inherit from ButtonBase, such as Button and HyperlinkButton. This post provides information on implementing commanding for other Silverlight controls. For example, the application displays a DataGrid. A click on a grid row should display […]
Silverlight Simple MVVM Commanding
As you build your line of business (LOB) applications, you will need to process commands. In many cases, these commands are executed when the user clicks a button. For example, when the user clicks the Save button, the code needs to process a Save "command" and perform the save. One way to handle the commands […]
Microsoft MVP Forum Award Recipient
I was very honored to hear last week that I won one of the Microsoft MVP Forum awards for top answerers. With 2879 posts last year (2010), I was able to provide 1174 answers in the MSDN forums: http://social.msdn.microsoft.com/Forums/en-US/categories. I really enjoy working with the developers in the forums. It is fun to see what […]
Simple Silverlight MVVM Base Class
As you start to add more Views and associated View/Models to your Silverlight line of business (LOB) application, you will notice that the classes include some common and repeated code. Building a simple base class for your View/Models provides a single place for that common code. NOTE: This post is part of a series that […]