WPF Setting Custom Colors as XAML Static Resources
Are you working on a project that uses custom colors, perhaps corporate colors? Have you been given the […]
Are you working on a project that uses custom colors, perhaps corporate colors? Have you been given the […]
Microsoft in their website article Using brushes to paint backgrounds, foregrounds, and outlines says: “A SolidColorBrush paints an […]
As Microsoft says: “You use Brush objects to paint the interiors or outlines of XAML shapes, text, and […]
Microsoft says: “A LinearGradientBrush paints an area with a gradient that’s defined along a line. This line is […]
The Border control is a Decorator control that you can use to draw a border, a background, or […]
The Slider control in WPF is very much like the ProgressBar. There is a little more to it […]
The WPF WebBrowser control was introduced in WPF 3.5 SP1 (August 2008). It supports rendering HTML from an […]
The Frame is a WPF built-in content control that does not have the notion of being clicked like […]
The Tooltip is one of the three content containers that don’t have the notion of being clicked. The […]
Let’s use the example in the book WPF Illustrated to create a data grid. Create a new WPF […]
In this example program we have a DataGrid that is filled with data from an API. This is […]
The ListView control derives from (inherits from) ListBox. A ListView is basically like a ListBox, but it also […]