本文整理匯總了Java中javax.swing.JButton.setLocation方法的典型用法代碼示例。如果您正苦於以下問題:Java JButton.setLocation方法的具體用法?Java JButton.setLocation怎麽用?Java JButton.setLocation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JButton
的用法示例。
在下文中一共展示了JButton.setLocation方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: StartUp
import javax.swing.JButton; //導入方法依賴的package包/類
public StartUp( int which ) {
try {
URL url = null;
switch (which) {
case MapApp.MERCATOR_MAP:
url = cl.getResource(startUpPath +"smallmapV3.jpg"); //New version3 images
break;
case MapApp.SOUTH_POLAR_MAP:
url = cl.getResource(startUpPath + "MapAppSouthV3.jpg");
break;
case MapApp.NORTH_POLAR_MAP:
url = cl.getResource(startUpPath + "MapAppNorthV3.jpg");
break;
case MapApp.WORLDWIND:
url = cl.getResource(startUpPath + "VirtualOceanV3.jpg");
break;
default:
url = cl.getResource(startUpPath + "smallmap.jpg");
}
image = ImageIO.read(url);
} catch (Exception ex) {
System.out.println(ex + " null");
image=null;
}
setLayout(null);
label = new JLabel("Initializing MapApp...");
label.setFont( new Font("SansSerif", Font.PLAIN, 12) );
label.setForeground( Color.black );
// add( label );
label.setLocation(10, 50);
label.setSize( label.getPreferredSize() );
JButton button = new JButton( "Abort" );
add( button );
button.setLocation( 3, 3);
button.setSize( button.getPreferredSize() );
button.addActionListener( this );
// System.out.println( getComponentCount() + " components" );
setBorder( BorderFactory.createLineBorder(Color.black, 2) );
}