问题
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);
来源:https://stackoverflow.com/questions/13529563/c-sharp-set-fontsize-of-textbox