かずきのBlog@hatena

すきな言語は C# + XAML の組み合わせ。Azure Functions も好き。最近は Go 言語勉強中。日本マイクロソフトで働いていますが、ここに書いていることは個人的なメモなので会社の公式見解ではありません。

システムのLockAndFeelを適用

やっぱOSと同じ見た目が使いやすいよね

JFrame.setDefaultLookAndFeelDecorated(true);
try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
    e.printStackTrace();
}

JFrame f = new AppFrame();
f.setVisible(true);