Author Archives: compitionpoint - Page 22
C# RichTextBox Control
The RichTextBox control () is similar to a TextBox control, but it allows you to format different parts of the text inside it. The TextBox control is typically used to accept text input from the user…
TextBox Control
The TextBox control () is the most basic means of input in a windows forms. You give the input data by typing it inside the text box. The text you type can…
Label Control
The Label control () is employed to feature text to a type which will be wont to show messages, or add labels to spot what alternative controls’ practicality a label…
Button Control
The Button control () is usually wont to execute commands once it’s clicked. once a button is clicked, you specify codes that may be used. Buttons are typically used to…
Windows Form
Windows Forms (or simply forms) are the windows you see in a Windows Application. You can create multiple forms in a single application. Each form inherits the properties and methods of the ;class.…
Naming Your Controls
Always make a habit of naming controls. We name our control using its Name property. Naming controls follows the guideline for naming variables such as spaces, special characters, and the use of…
C# Controls
C# Control is the visual components that compose the graphical user interface. Everything you see in a GUI is a C# Control, including the form itself. c# control is located…
MessageBox Class
The is a static category that’s wont to show message boxes for prompting, confirmation and warning users. To show a message box, simply call the Show method of the MessageBox class. The simplest version…
Separating Design and Functionality
When we create a new windows form, a class that inherits from ;is generated. This class is separated in two files thanks to the feature called partial classes. Partial classes allow…
C# Event Handling
Graphical user interfaces in .NET and Visual C# uses event handling mechanism to handle events that occur while the program is running. Events are behaviors or happenings that occur when…