C# comboBoxのテキストの色を変更する
C#で、ForeColorを使用して、comboBoxのテキストの色を変更するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Microsoft Visual Studio Community 2019 Version 16.7.1
ForeColor使い方
ForeColorにRGB値を指定することで、comboBoxのテキストの色を変更することが可能です。
comboBox1.ForeColor = Color.FromArgb(86, 61, 124);
// 以下も可能
comboBox1.ForeColor = Color.Red;
サンプルコード
以下は、
「実行」ボタンをクリックすると、comboBoxのテキストの色を変更する
サンプルコードとなります。
using System;
using System.Drawing;
using System.Windows.Forms;
namespace FormTestApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
comboBox1.Items.Add("aaaaa");
comboBox1.Items.Add("bbbbb");
comboBox1.Items.Add("ccccc");
comboBox1.Items.Add("ddddd");
comboBox1.Items.Add("eeeee");
}
private void button1_Click(object sender, EventArgs e)
{
if (comboBox1.ForeColor == Color.FromArgb(86, 61, 124))
{
//テキストの色変更
comboBox1.ForeColor = Color.Red;
}
else
{
//テキストの色変更
comboBox1.ForeColor = Color.FromArgb(86, 61, 124);
}
}
}
}
テキストの色が変わっていることが確認できます。
-
前の記事
Nuxt.js ライブラリ「awesome-vue-star-rating」を使用してstar rateを作成する 2021.08.13
-
次の記事
AlmaLinux pythonの初心者向けの総合開発環境「thonny」をインストールする 2021.08.13
コメントを書く