WPF CommandsWPF commands are closely related to events. When the user clicks a button, chooses something from a menu […] April 1, 2020 in WPF tagged command / event / commands by Mike
XAML Data Binding DataContextThe wpf-tutorial.com website has an introductory discussion on the DataContext property. The DataContext property is the default source […] March 31, 2020 in WPF tagged data / WPF / binding / property / datacontext by Mike
WPF Data Binding IntroductionWhat is binding in WPF? It is about tying together .NET objects. It’s about fastening together. In the […] March 31, 2020 in WPF tagged binding / xaml / synchronize / data / WPF / introduction / WPF Data Binding by Mike
WPF RGB Color ViewerThis post is an update to the previous post called C# WPF RGB Color Viewer. Below is the […] March 31, 2020 in WPF tagged RGB / viewer / binding / tryparse / conversion / picker / hyperlink / WPF / color by Mike
WPF Property TriggerWith triggers you can change the value of a given property, once a certain condition changes. Triggers come […] March 30, 2020 in WPF tagged trigger / property by Mike
Variables in XAMLIn your WPF project, would you benefit by creating variables? Perhaps in your XAML code, you need to […] March 30, 2020 in WPF tagged resource / key / variable / static by Mike
WPF Event Handlers and Property TriggersImagine that you want the color of a control on your GUI to turn blue when the mouse […] March 30, 2020 in WPF tagged trigger / color / options / property / button / event / handler / Textbox / rectangle / preference by Mike
WPF Dynamically Change Background Color of LabelAs a Windows Presentation Foundation (WPF) developer you may want to allow your user to set some properties […] March 29, 2020 in WPF tagged color / RGB / background / label / change / dynamically / programmatically by Mike
WPF DialogsIn your WPF application, what is a dialog and how do you create and show dialogs? A dialog […] March 29, 2020 in WPF tagged dialog / modal / custom / common / box / message by Mike
WPF Simple Splash ScreenWPF provides a mechanism for displaying a simple graphic image before the main window appears. If you just […] March 29, 2020 in WPF tagged simple / window / splash / screen by Mike
WPF Buttons and Message BoxesButtons are a very familiar interface element, but the precise definition is not obvious. A button is a […] March 28, 2020 in WPF tagged messagebox / app / box / button / message / show / App.xaml by Mike
WPF StackPanel LayoutThe StackPanel is easy to use, code and understanding, making it a popular panel. It sequentially arranges controls […] March 28, 2020 in WPF tagged layout / stackpanel by Mike