📄 jpanelwaypoint.java
字号:
package net.aetherial.gis.surface.main;
import javax.swing.JPanel;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
import java.awt.Font;
import javax.swing.BorderFactory;
import javax.swing.JTextField;
import javax.swing.JLabel;
import javax.swing.JButton;
import javax.swing.JComboBox;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2004</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class JPanelWaypoint extends JPanel{
public JPanelWaypoint() {
try {
jbInit();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
public static void main(String[] args) {
JPanelWaypoint jpanelwaypoint = new JPanelWaypoint();
}
private void jbInit() throws Exception {
this.setLayout(xYLayout1);
jLabel1.setText("纬度:");
jTextFieldWaypointName.setText(" ");
jLabel2.setText("关键点标记:");
jLabel3.setText("高度:");
jLabel4.setFont(new java.awt.Font("宋体", Font.BOLD, 11));
jLabel4.setBorder(BorderFactory.createEtchedBorder());
jTextFieldAlt.setText(" ");
jTextFieldLat.setText(" ");
jLabel5.setText("时间:");
jTextFieldRWb.setText(" ");
jButton1.setText("上一条");
jLabel6.setText("路面变化点:");
jTextFieldLon.setText(" ");
jLabel7.setFont(new java.awt.Font("宋体", Font.BOLD, 11));
jLabel7.setBorder(BorderFactory.createEtchedBorder());
jButton2.setText("下一条");
jButton3.setText("删除此航点");
jLabel8.setText("米 → ");
jTextFieldTime.setText(" ");
jLabel9.setText("米 ");
jTextFieldRWa.setText(" ");
jLabel10.setText("航点名称:");
jLabel11.setText("经度:");
jButton4.setText("修 改");
xYLayout1.setWidth(503);
xYLayout1.setHeight(383);
this.add(jLabel10, new XYConstraints(36, 50, -1, -1));
this.add(jComboBoxChenge, new XYConstraints(255, 81, 77, -1));
this.add(jLabel2, new XYConstraints(258, 160, -1, -1));
this.add(jComboBoxKey, new XYConstraints(264, 182, 87, -1));
this.add(jButton1, new XYConstraints(30, 266, -1, -1));
this.add(jTextFieldWaypointName, new XYConstraints(98, 45, 105, 21));
this.add(jTextFieldLon, new XYConstraints(98, 80, 105, 21));
this.add(jTextFieldLat, new XYConstraints(98, 115, 105, 21));
this.add(jTextFieldAlt, new XYConstraints(98, 149, 105, 21));
this.add(jTextFieldTime, new XYConstraints(98, 184, 105, 21));
this.add(jLabel5, new XYConstraints(36, 183, -1, -1));
this.add(jLabel11, new XYConstraints(36, 83, -1, -1));
this.add(jLabel1, new XYConstraints(36, 117, -1, -1));
this.add(jLabel3, new XYConstraints(36, 150, -1, -1));
this.add(jLabel6, new XYConstraints(256, 54, -1, -1));
this.add(jLabel8, new XYConstraints(389, 83, -1, -1));
this.add(jLabel9, new XYConstraints(476, 83, -1, -1));
this.add(jTextFieldRWb, new XYConstraints(430, 80, 38, -1));
this.add(jLabel7, new XYConstraints(249, 45, 245, 88));
this.add(jTextFieldRWa, new XYConstraints(343, 81, 38, -1));
this.add(jButton3, new XYConstraints(269, 266, -1, -1));
this.add(jButton4, new XYConstraints(110, 266, 67, -1));
this.add(jButton2, new XYConstraints(189, 266, -1, -1));
this.add(jLabel4, new XYConstraints(249, 154, 225, 83));
}
private XYLayout xYLayout1 = new XYLayout();
private JLabel jLabel1 = new JLabel();
private JTextField jTextFieldWaypointName = new JTextField();
private JLabel jLabel2 = new JLabel();
private JLabel jLabel3 = new JLabel();
private JLabel jLabel4 = new JLabel();
private JTextField jTextFieldAlt = new JTextField();
private JTextField jTextFieldLat = new JTextField();
private JLabel jLabel5 = new JLabel();
private JTextField jTextFieldRWb = new JTextField();
private JButton jButton1 = new JButton();
private JLabel jLabel6 = new JLabel();
private JTextField jTextFieldLon = new JTextField();
private JLabel jLabel7 = new JLabel();
private JComboBox jComboBoxKey = new JComboBox();
private JButton jButton2 = new JButton();
private JButton jButton3 = new JButton();
private JLabel jLabel8 = new JLabel();
private JTextField jTextFieldTime = new JTextField();
private JLabel jLabel9 = new JLabel();
private JTextField jTextFieldRWa = new JTextField();
private JLabel jLabel10 = new JLabel();
private JLabel jLabel11 = new JLabel();
private JComboBox jComboBoxChenge = new JComboBox();
private JButton jButton4 = new JButton();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -