I want a JPanel with conrols to be pop-up ed from windows taskbar when My application started
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems to me that you want a JDialog with controls to be popped up, since JPanel is not a top level container. Add a window listener to your top-level container (JFrame). It is fairly easy to implement your openMyControlsDialog(…) method:
I do not quite understand what you mean when you write “from taskbar”. Don’t all programs pop up from the task bar?