C# – How to use TrackBar control?
TrackBar control is one of the useful user interface control, commonly used to select a value from the given range, by using it’s slider (or...
C# – How to use ColorDialog?
ColorDialog is one of the common dialog in .Net Framework; used to display the available colors and also allows us to define custom colors. Through...
C# – How to use PictureBox control?
PictureBox control is used to display the picture. Once we place the control on Windows Form, we need to set the right properties to load...
C# – How to create Button control dynamically?
C# allows us to create the controls dynamically, and place them on Windows Forms. Through this article, we are going to create a Button control...
C# – How to use Button control?
One of the mostly used control in Windows Forms is the Button control. We use Button controls, to take ‘click’ input from the User. The...
C# – How to fix “Action being performed on this control is being called from the wrong thread”?
When we populate the data in the control, if the data is big, usually we put the data population logic in the thread to execute...
C# – How to use TreeView control in C# Windows Application?
TreeView control in C# is used to display the items in hierarchical form. Each item in TreeView control is called a node. A node can...
C# – Asynchronous programming – async and await
Usually when we run the C# code, each statement executes synchronously; that means, one after another statement, executes sequentially. But, how do we instruct to...
C# – How to use ListBox control?
ListBox control is used to display the list of items and allows to sort the items. One interesting thing is, it displays the items in...
C# – How to use ProgressBar control?
ProgressBar control we use to display the status of the lengthy operation. When we download a file or copy a file to another location; usually...
C# – How to use string interpolation?
String interpolation is useful to create the formatted strings in a more readable form. C# uses the symbol “$” to represent the given string is...
C# – Understanding of Structures
Structures are composite types and can contain different types of elements. That means, structures can contain integer elements, strings, floating point elements, and even other...
C# – Query Expressions
Query Expressions contains a set of instructions to select the data source and retrieve the data from the selected data source. Define a Query C#...
C# – Modifiers – sealed Modifier – Prevent Class Inheritance
So far we have discussed about different types of modifiers available in C#. In this Article we will discuss about another interesting modifier C# provides;...
C# – Modifiers – override and new modifiers
In our earlier Article, we have discussed about benefits and usage of virtual modifier in C#. We learnt that virtual keyword enables to override the...
C# – Modifiers – The virtual Modifier – Why virtual?
Through the series of Articles, we are discussing about Modifiers in C#. In this Article, we will discuss about virtual modifier. virtual modifier is used during...
C# – Modifiers – const and readonly Modifiers
Through the series of articles, we are discussing about the Modifiers in C#. These modifiers are used to modify the behavior of the defined members....
C# – Modifiers – static Modifier
Another interesting modifier C# provides is static modifier. We can use this on classes & it’s members. The static Modifier A static member can be...
C# – Modifiers – abstract Modifier
C# provides modifiers to modify the declarations of types and type members. We have discussed Access Modifiers in our previous Articles. In this Article, we...
C# – Access Modifiers – internal and protected internal access modifiers
C# provides different access modifiers to allow to define the scope for the classes and it’s members. We already discussed few of the modifiers in our...