Setting icon to the dialog created using Dialog Wrapper
已回答
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.
请先登录再写评论。
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 :)