本文整理汇总了Java中javax.swing.SwingConstants.TOP属性的典型用法代码示例。如果您正苦于以下问题:Java SwingConstants.TOP属性的具体用法?Java SwingConstants.TOP怎么用?Java SwingConstants.TOP使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.swing.SwingConstants
的用法示例。
在下文中一共展示了SwingConstants.TOP属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: paintComponent
protected void paintComponent(Graphics graphics) {
graphics.setColor(getBackground());
graphics.fillRect(0, 0, getWidth(), getHeight());
switch (imageAlign) {
case (SwingConstants.TOP):
graphics.drawImage(image, (getWidth() - image.getWidth(null)) / 2, 0, this);
break;
case (SwingConstants.BOTTOM):
graphics.drawImage(image, (getWidth() - image.getWidth(null)) / 2, getHeight() - image.getHeight(null), this);
break;
default:
graphics.drawImage(image, (getWidth() - image.getWidth(null)) / 2, 0, this);
}
}
示例2: paintTabBorderSelected
private void paintTabBorderSelected(Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h) {
if (tabPlacement == SwingConstants.TOP) {
paintSelectedTop(g, x, y, w, h);
} else if (tabPlacement == SwingConstants.LEFT) {
paintSelectedLeft(g, x, y, w, h);
} else if (tabPlacement == SwingConstants.RIGHT) {
paintSelectedRight(g, x, y, w, h);
} else {
paintSelectedBottom(g, x, y, w, h);
}
}
示例3: ImagePanel
public ImagePanel(Image image) {
this(image, SwingConstants.TOP);
}
示例4: ExtendedJTabbedPane
public ExtendedJTabbedPane() {
super(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
}