c# set FontSize of TextBox

2020-05-25 06:02发布

问题:

How would I set the font size of a TextBox in c#. I can get the current size but it does not allow to set it.

public static Form client;
((TextBox)client.Controls[0]).Font.size = 16;

回答1:

You have to set the Font property. Size is a readonly property of Font.

var textBox = (TextBox)client.Controls[0];
textBox.Font = new Font(textBox.Font.FontFamily, 16);