Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • C# Data Types
  • C# Decision Making
  • C# Methods
  • C# Delegates
  • C# Constructors
  • C# Arrays
  • C# ArrayList
  • C# String
  • C# Tuple
  • C# Indexers
  • C# Interface
  • C# Multithreading
  • C# Exception
Open In App
Next Article:
How to set the state of the CheckBox in C#?
Next article icon

How to set text in the CheckBox in C#?

Last Updated : 30 Sep, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the text in the CheckBox using the Text property of the CheckBox. It makes your CheckBox more attractive. In Windows form, you can set this property in two different ways:

1. Design-Time: It is the simplest way to set the Text property of a CheckBox using the following steps: 

  • Step 1: Create a windows form as shown in the below image 
    Visual Studio -> File -> New -> Project -> WindowsFormApp 
  • Step 2: Drag the CheckBox control from the ToolBox and drop it on the windows form. You can place CheckBox anywhere on the windows form according to your need. 
  • Step 3: After drag and drop you will go to the properties of the CheckBox control to set the text associated with the CheckBox using Text property. 

Output: 


2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the Text property of a CheckBox programmatically using the following syntax:

public override string Text { get; set; }

Here, the text of the CheckBox is of string type. Following steps are used to set the Text property of the CheckBox:  

  • Step 1: Create a checkbox using the CheckBox() constructor provided by the CheckBox class.
// Creating checkbox CheckBox Mycheckbox = new CheckBox();
  • Step 2: After creating CheckBox, set the Text property of the CheckBox provided by the CheckBox class. 
// Set the Text property of the CheckBox Mycheckbox.Text = "C#";
  • Step 3: And last add this checkbox control to form using Add() method. 
// Add this checkbox to form this.Controls.Add(Mycheckbox);

Example:

C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;  namespace WindowsFormsApp5 {  public partial class Form1 : Form {      public Form1()     {         InitializeComponent();     }      private void Form1_Load(object sender, EventArgs e)     {         // Creating and setting the properties of label         Label l = new Label();         l.Text = "Select language:";         l.Location = new Point(233, 111);          // Adding label to form         this.Controls.Add(l);          // Creating and setting the properties of CheckBox         CheckBox Mycheckbox = new CheckBox();         Mycheckbox.Height = 50;         Mycheckbox.Width = 100;         Mycheckbox.Location = new Point(229, 136);         Mycheckbox.Text = "C#";         Mycheckbox.BackColor = Color.LightPink;         Mycheckbox.ForeColor = Color.DarkGreen;         Mycheckbox.Name = "First_Check_Box";          // Adding checkbox to form         this.Controls.Add(Mycheckbox);          // Creating and setting the properties of CheckBox         CheckBox Mycheckbox1 = new CheckBox();         Mycheckbox1.Height = 50;         Mycheckbox1.Width = 100;         Mycheckbox1.Location = new Point(250, 198);         Mycheckbox1.Text = "Ruby";         Mycheckbox1.BackColor = Color.LightGreen;         Mycheckbox1.ForeColor = Color.DeepPink;         Mycheckbox1.Name = "Second_Check_Box";         // Adding checkbox to form         this.Controls.Add(Mycheckbox1);     } } } 

Output: 


 


Next Article
How to set the state of the CheckBox in C#?
author
ankita_saini
Improve
Article Tags :
  • C#

Similar Reads

  • How to set the name of the CheckBox in C#?
    The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to assign a name to the CheckBox using the Name property of the CheckBox.
    3 min read
  • How to set the state of the CheckBox in C#?
    The CheckBox control is the part of the windows form that is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to get or set the state of the CheckBoxes using the CheckState property
    3 min read
  • How to set the alignment of Text in CheckBox in C#?
    The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the alignment of the content present in the CheckBox using the Text
    3 min read
  • How to set the font of the CheckBox in C#?
    The CheckBox control is the part of the windows form that is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the font of the text displayed in the CheckBox using the Font pr
    3 min read
  • How to set the padding of CheckBox in C#?
    The CheckBox control is the part of windows form that is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the space between the content and the CheckBox boundaries using the
    3 min read
  • How to set the Location of CheckBox in C#?
    The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the coordinates of the upper-left corner of the checkbox control re
    3 min read
  • How to set Text in ComboBox in C#?
    In Windows Forms, ComboBox provides two different features in a single control, it means ComboBox works as both TextBox and ListBox. In ComboBox, only one item is displayed at a time and the rest of the items are present in the drop-down menu. You are allowed to add text in your ComboBox by using th
    3 min read
  • How to set the visibility of the CheckBox in C#?
    The CheckBox control is the part of the windows form that is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set a value that represents the CheckBox and its CheckBox controls a
    3 min read
  • How to set the appearance of the CheckBox in C#?
    The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. You are allowed to use a CheckBox as a normal CheckBox or a CheckBox as a button by using Appearance pr
    3 min read
  • How to set the CheckBox to Checked state in C#?
    The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the state of your CheckBox to the Checked using the Checked Propert
    3 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences