Tag - C# WPF Examples

Windows Form WPF Form

C# Using BackgroundWorker

BackgroundWorker In C# In the case of time-consuming tasks (eg reading a very large text file), it can happen that the form freezes, so to speak. This happens because everything runs in one thread and so the form has no chance to...

WPF Form

Temperature Conversion in C# Form

In this tutorial we are going to make a Temperature converter which can convert Celsius to Fahrenheit in C# Form Application. In this program we are extending Windows Form. For that we are going to use 1 Button ,2 textBox and 2...

General WPF Form

C# Base64 String to PNG Image

Here’s the code for saving a base64 encoded string to image file in C#. You can to convert  a base64 string into PNG format in C# by following code You may also like: C# Image File to Base64 String   Base64 To PNG in C#...