bolding group box
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hello, i'm trying to make the display of the group-box 3D and bold from the form how do I do that?
-
hello, i'm trying to make the display of the group-box 3D and bold from the form how do I do that?
Hello, If I understand correctly, you wish to change the look of the GroupBox to 3D and the Text portion to Bold using code. 3D style option is not available for GroupBox. To make the GroupBox text bold, you can use the following code.
Font gfont = new Font(this.groupBox1.Font,FontStyle.Bold); this.groupBox1.Font= gfont;
I hope this will help. Regards, AllenAllen Smith Software Engineer ComponentOne LLC www.componentone.com