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...
Tag - C# WPF Examples
Simple Calculator Example in C# WPF Application
he following C# code is for a simple calculator. In this tutorial we will use Visual Studio and the WPF to build simple calculator that perform addition, subtraction, multiplication and division on floating point number. C#...
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...
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#...