Setting icon to the dialog created using Dialog Wrapper
Answered
I have created a dialog which extends "DialogWrapper" [ http://www.jetbrains.org/intellij/sdk/docs/user_interface_components/dialog_wrapper.html ] . Now i want to set icon image for the JFrame corresponding to this Dialog. But there is no provision for it.
Please sign in to leave a comment.
DialogWrapper uses JDialog under the hood. You can access it via `DialogWrapper.getWindow()`.
If you need JFrame, you can take a look at FrameWrapper.
Yes Got it. Thank you :)