-
BasicArrowButton
how do use this class to go back from the current JDialog to previous JDialog screen.
here what i have so far...
BasicArrowButton lArrow, rArrow; // declare
private class pageDirection implements ActionListener{
public void actionPerformed( ActionEvent pDir )
{
if (pDir.getSource() == lArrow)
{
toBack();
}
}
}
////
pageDirection pageDir = new pageDirection();
leftArrow.addActionlistener(pageDir);
thanx
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|