当前位置: 首页>>代码示例>>Java>>正文


Java ComponentPeer.SET_LOCATION属性代码示例

本文整理汇总了Java中java.awt.peer.ComponentPeer.SET_LOCATION属性的典型用法代码示例。如果您正苦于以下问题:Java ComponentPeer.SET_LOCATION属性的具体用法?Java ComponentPeer.SET_LOCATION怎么用?Java ComponentPeer.SET_LOCATION使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在java.awt.peer.ComponentPeer的用法示例。


在下文中一共展示了ComponentPeer.SET_LOCATION属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setBounds

/**
 * {@inheritDoc}
 * <p>
 * The {@code width} or {@code height} values
 * are automatically enlarged if either is less than
 * the minimum size as specified by previous call to
 * {@code setMinimumSize}.
 * <p>
 * The method changes the geometry-related data. Therefore,
 * the native windowing system may ignore such requests, or it may modify
 * the requested data, so that the {@code Window} object is placed and sized
 * in a way that corresponds closely to the desktop settings.
 *
 * @see #getBounds
 * @see #setLocation(int, int)
 * @see #setLocation(Point)
 * @see #setSize(int, int)
 * @see #setSize(Dimension)
 * @see #setMinimumSize
 * @see #setLocationByPlatform
 * @see #isLocationByPlatform
 * @since 1.6
 */
public void setBounds(int x, int y, int width, int height) {
    synchronized (getTreeLock()) {
        if (getBoundsOp() == ComponentPeer.SET_LOCATION ||
            getBoundsOp() == ComponentPeer.SET_BOUNDS)
        {
            locationByPlatform = false;
        }
        super.setBounds(x, y, width, height);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:33,代码来源:Window.java


注:本文中的java.awt.peer.ComponentPeer.SET_LOCATION属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。