C# XAML Buttons
In XAML, there are several controls that derive from ButtonBase: Button, RepeatButton, ToggleButton, CheckBox and RadioButton. More ButtonBase-derived […]
In XAML, there are several controls that derive from ButtonBase: Button, RepeatButton, ToggleButton, CheckBox and RadioButton. More ButtonBase-derived […]
The book WPF 4.5 Unleashed by Adam Nathan discusses combo boxes on page 262-267. The ComboBox control enables […]
You can use the as operator to perform certain types of conversions between compatible reference types or nullable […]
The book Illustrated WPF discusses list box controls. A ListBox is a collection of items displayed to the […]
Assembly resources are digital objects, such as images, that aren’t generated by the source code. Assembly resources can […]
This is a continuation of Resources Introduction Part 2, where we were discussing XAML Resources from the book […]
Code Behind Let’s illustrate how to use C# code behind to store and retrieve a SolidColorBrush in a […]
WPF supports two types of resources: binary and logical. Binary resources include, for example, images or icons that […]
This is a continuation of Object Names Part 1. This example allows the user to view a custom […]
Code Behind and Object Names This discussion is based on the book Illustrated WPF by Daniel S on […]
Consider the following C# code that creates a button. The XAML parser or compiler must look for a […]
The book WPF 4.5 Unleaashed says: XAML is a relatively simple and general-purpose declarative programming language suitable for […]