CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Controls

C# – How to use RadioButton control?

RadioButton controls are used to get the mutually exclusive options from the user. It has similar functionality with CheckBox control. CheckBox control is to get combination of options from the user, whereas this control allowed to select mutually exclusive options. Properties When set AutoCheck property to True, the state of the RadiButton control automatically changed […]

C# – How to use ColorDialog?

ColorDialog is one of the common dialogs in .Net Framework; used to display the available colors and also allows us to define custom colors. Through this article, we are going to discuss, how we use ColorDialog. Usually, we have Standard colors and User-defined colors. By modifying the individual color components of the Standard colors, we […]

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 multiple columns also. For example, Windows Explorer displays the list of files (say Tiles view); in multiple columns. Depending on your requirement you can select whether to display the items […]

Scroll to top