I have created one project in netbeans. I have one internal frame, which I want to be displayed as dialog. Please help me. Note:I have used windows look and feel.
相关问题
- 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
Swing has its own native look and feel. You can document yourself on
JDialog
right here. For platform look and feel, try using SWT. Next time please be more specific with your question. Good luck.Don't use a
java.awt.Dialog
orjavax.swing.JDialog
. Instead look to theJOptionPane
methods that start with 'showInternal..
'. E.G.