is used to change the foreground colour of text ???
Answers
Here, Color is used to represent the foreground color of the TextBox. Following steps are used to set the ForeColor property of the TextBox:
Step 1 : Create a textbox using the TextBox() constructor provided by the TextBox class.
// Creating textbox
TextBox Mytextbox = new TextBox();
Step 2 : After creating TextBox, set the ForeColor property of the TextBox provided by the TextBox class.
// Set ForeColor property
Mytextbox.ForeColor = Color.Red;
Step 3 : And last add this textbox control to from using Add() method.
// Add this textbox to form
this.Controls.Add(Mytextbox);
Example:
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 my {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// Creating and setting the properties of Lable1
Label Mylablel = new Label();
Mylablel.Location = new Point(96, 54);
Mylablel.Text = "Enter Name";
Mylablel.AutoSize = true;
Mylablel.BackColor = Color.LightGray;
// Add this label to form
this.Controls.Add(Mylablel);
// Creating and setting the properties of TextBox1
TextBox Mytextbox = new TextBox();
Mytextbox.Location = new Point(187, 51);
Mytextbox.BackColor = Color.LightGray;
Mytextbox.ForeColor = Color.Red;
Mytextbox.AutoSize = true;
Mytextbox.Name = "text_box1";
Mytextbox.Font = new Font("Broadway", 12);
// Add this textbox to form
this.Controls.Add(Mytextbox);