Change group box text color?

后端 未结 5 590
感动是毒
感动是毒 2020-12-19 08:11

How do you change the text color of a group box in C#? The \"documentation\" doesn\'t even mention this, and Googling hasn\'t turned up an answer.

Thanks! Alan

5条回答
  •  没有蜡笔的小新
    2020-12-19 09:00

    Use the ForeColor property. Sample code:

    using System;
    using System.Drawing;
    using System.Windows.Forms;
    
    class Test
    {       
        [STAThread]
        static void Main(string[] args)
        {
            Form form = new Form();
            GroupBox group = new GroupBox();
            group.Text = "Text";
            group.ForeColor = Color.Red;
            form.Controls.Add(group);
            Application.Run(form);
        }
    }
    

提交回复
热议问题