• category: swing folder: NoPlacesBarFileChooser title: JFileChooserのPlacesBarを非表示にする tags: [JFileChooser, PlacesBar] author: aterai pubdate: 2009-11-16T19:20:02+09:00 description: JFileChooser(WindowsLookAndFeel)のPlacesBarを非表示にします。 image: https://lh5.googleusercontent.com/_9Z4BYR88imo/TQTQZdQnWAI/AAAAAAAAAfg/Cne_bKrk8BU/s800/NoPlacesBarFileChooser.png

概要

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

サンプルコード

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

解説

上記のサンプルでは、PlacesBar(WindowsLookAndFeelを使用している場合のJFileChooserで左側に表示されるパネル)が非表示になるようにUIManager.put("FileChooser.noPlacesBar", Boolean.TRUE)を指定しています。

  • WindowsLookAndFeel以外のJFileChooser場合、このFileChooser.noPlacesBarの指定は無視される

参考リンク

コメント