Thread
:
Button font size programmatically???
View Single Post
Nov 8th, 2005, 1:51 AM
#
2
The Dark
Expert Programmer
Join Date: Jun 2005
Posts: 915
Rep Power:
4
Try something like:
(
Toggle Plain Text
)
tempButton.Font = new Font(tempButton.Font.FontFamily, 26);
tempButton.Font = new Font(tempButton.Font.FontFamily, 26);
where 26 is the size of the new font.
I haven't tried this, I just read the documentation.
The Dark
View Public Profile
Find More Posts by The Dark