Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#でTextBoxのフォントサイズを設定するにはどうすればよいですか。現在のサイズは取得できますが、設定できません。
public static Form client; ((TextBox)client.Controls[0]).Font.size = 16;
プロパティを設定する必要がありFontます。Sizeの読み取り専用プロパティですFont。
Font
Size
var textBox = (TextBox)client.Controls[0]; textBox.Font = new Font(textBox.Font.FontFamily, 16);