• title: JFileChooserのPlacesBarを非表示にする tags: [JFileChooser, PlacesBar] author: aterai pubdate: 2009-11-16T19:20:02+09:00 description: JFileChooser(WindowsLookAndFeel)のPlacesBarを非表示にします。

概要

JFileChooser(WindowsLookAndFeel)のPlacesBarを非表示にします。

サンプルコード

UIManager.put("FileChooser.noPlacesBar", Boolean.TRUE);
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、WindowsLookAndFeelを使用している場合のJFileChooserで、左側に表示されるPlacesBarを非表示に設定しています。

WindowsLookAndFeel以外の場合、FileChooser.noPlacesBarの指定は無視されます。

参考リンク

コメント