タイトルバーにボタンを追加しようとしています。表示されていないようで、何らかの理由でタイトルの単語が隠されています。
私のJFrameでは、次のことを行います。
CustomTitlePane.editTitleBar(this);
そして私のタイトルクラス:
public class CustomTitlePane extends SubstanceTitlePane {
private static final long serialVersionUID = 1L;
public CustomTitlePane(JRootPane root, SubstanceRootPaneUI ui) {
super(root, ui);
}
public static void editTitleBar(JFrame frame){
JComponent title = SubstanceLookAndFeel.getTitlePaneComponent(frame);
JButton titleButton = new JButton("test");
titleButton.putClientProperty("substancelaf.internal.titlePane.extraComponentKind", ExtraComponentKind.TRAILING);
title.add(titleButton,2);
}
}