WPF MultiThreading

In this article WPF MultiThreading, I will demonstrate how to create multi threaded WPF application. You will learn about : WPF Threading Model Creating separate Thread to offload time consuming tasks to be done asynchronously Using WPF provided classes like BackgroundWorker instead of creating separate thread manually to offload time consuming tasks to be done … Continue reading WPF MultiThreading

Generate QR Code in WPF

In this article, you will learn how to generate QR Code in WPF application. vCard 3.0 format (https://en.wikipedia.org/wiki/VCard) can be saved in your cell phone's address book by scanning the QR Code. Source Code : Complete source code for the article at GitHub repo (along with sample excel sheet) https://github.com/sudipta-chaudhari/QRCode_WPF_vCard3.0 Use Case : A fictitious company's … Continue reading Generate QR Code in WPF