I need to get lots of data (file select , text, date ,...) from user in a MDI JFrame.
I need the input form that is a JInternalFrame
be modal.
How Can I make a JInternalFrame
modal?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
From my experience, I have never managed to make
JInternalFrame
modal and don't think that is possible out of the box.See this great article on an extension to
JInternalFrame
to make them modal (thanks to Steve Webb).