-1

在此处输入图像描述

如果有人可以帮助解决这个问题,请

4

1 回答 1

0

最简单的方法是加载 XML 主题。由于您的应用程序已经有一个深色主题,这将适合您

try {
          InputStream in = getClass().getResourceAsStream("/org/fife/ui/rsyntaxtextarea/themes/dark.xml");
          Theme theme = Theme.load(in);
          theme.apply(txaIDE);//WHERE txaIDE IS YOUR RSYNTAXTEXTAREA INSTANCE
      } catch (Exception e) {
          JOptionPane.showMessageDialog(rootPane, e.toString());
      }

我希望这有帮助

于 2018-01-29T11:04:22.127 回答