Month: May 2017
Useful StackOverflow link https://stackoverflow.com/questions/36221118/how-to-make-mouseover-event-in-mvvmStep 1: Create a new WPF projectStep 2: Create an example WPF windowMainWindow.xamlStep 3: Create the MVVM View Model classMainWindowViewModel.csStep 4: Add Event handling infrastructureRelayCommand.csEventRaiser.csEventArgs.csStep 5: Add …
Very useful StackOverflow link, Mark Green‘s answer, from which I have borrowed heavily here, with one or two modifications in order to fully work in a Visual Studio 2015 environment.Step …
Some instructions for setting the visibility of GridViewColumn items in WPF.Some useful StackOverflow links as follows:https://stackoverflow.com/questions/1392811/c-wpf-make-a-gridviewcolumn-visible-falseHelge Klein‘s contribution was particularly useful.Step 1: Create a new WPF applicationStep 2: Create the …
Some hints on how to display changing graphics in Java using a simple example I have borrowed from the following site:http://www.dreamincode.net/forums/topic/30222-working-with-graphics-in-java/I use the same approach to draw a number of …
Some instructions on how to create and display a hierarchical data structure in WPF by using HierarchicalDataTemplate with TreeViewVisual Studio 2019 project downloadable from here.Stack Overflow linkStep 1: Create a …