Label VB6 controls have the FontName property, which allows you to set the font as follows: lblTitle.FontName = "Arial Bold" . Does C # have something like this?
I am transferring a heavy database program from VB6 to C #, and I get the names of fonts such as "Arial Bold" or "Garamond Italic" from the database, and I have to set the font of some labels based on this text from the database.
source share