如何在不更改按钮字体的情况下更改 TextArea 的字体?

How to change the font of the TextArea without changing the font of the Buttons?

我做一个文本编辑器是为了好玩。

我面临的问题是更改 TextArea 的字体。

FramesetFont 方法更改文本区域的字体以及更改 Button 控件的字体。

如何更改文本区域的字体而不影响按钮的字体?

Diary()
{
    ...
    this.setFont(new Font("courier",Font.PLAIN,18));
    ...
}

这会更改文本区域和按钮的字体。

如何只改变文本区域的字体?

您应该使用 setFont 方法仅针对 TextArea

    TextArea ta=new TextArea();
    ta.setFont(new Font("courier",Font.PLAIN,18));