which is the easiest way to change Font size with C#.
with java it can all be done easily by calling Font constructor with necessary arguments.
JLabel lab = new JLabel("Font Bold at 24");
lab.setFont(new Font("Serif", Font.BOLD, 24));
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Maybe something like this:
Or if you are in the same class as the form then simply do this:
The constructor takes diffrent parameters (so pick your poison). Like this:
Reference here