Author: Andy
Google analytics is often associated with the recording and reporting of web page interactions, but it can easily be adapted to record user actions in a non-web desktop application too. …
Some practical instructions on how to include resource files to your Visual Studio C# WPF project that are not source code.Such non-code files can include binary data, text files, media …
Here is some of their online documentation on how to use the WiX Toolset to create installers:https://www.firegiant.com/wix/tutorial/getting-startedHere is a quick and concise guide to set up using the WiX Toolset …
Firstly a console application program to consecutively ENABLE and DISABLE the network connectivity: using System; using System.Diagnostics; namespace NetworkDisconnect { internal class Program { private static void Enable(string interfaceName) { …
Basic threading can quite easily be accomplished in C# by employing just a few lines of code.For this situation it is simply a matter of defining the function you wish …
An implementation of using the WPF Combo Box using MVVM patterns. The intention is to get a ComboBox control’s SelectedItem property to bind to an instance of a selected object, …
In this post I demonstrate how the methods of a DocumentViewer class may be invoked via MVVM / WPF in order to modify the way an embedded PowerPoint presentation is …
Step 1: Create a new WPF projectStep 2: Create the ViewModel classesAdd the ViewModel classes that are used to do the bindings with the User Interface componentsMainWindowViewModel.csThis includes the WindowState …
Example scenario: User clicks the mouse in a WPF application – how do we ‘listen’ to that event in order to trigger and handle an event in the main code? …
Some instruction on how to embed a PowerPoint presentation within a WPF application by converting the file to a XPS format and displaying this using DocumentViewer.Step 1: Create a WPF …