3

我正在使用 Griffon-> SwingBuilder 创建一个应用程序。我希望能够使应用程序在桌面上居中。

我知道我们可以在应用程序创建时提供“位置:[x,y]”参数。反正有没有访问桌面属性来计算中心?

4

2 回答 2

3

由于各种原因,您不能内联。这是居中的一种方法

import java.awt.*
import groovy.swing.*

sb = new SwingBuilder()
sb.build {
  f = frame(pack:true) {
      label "<html>" + (("This is a very long label."*3) + "<BR>")*5
  }
  Point cp = GraphicsEnvironment.localGraphicsEnvironment.centerPoint
  f.location = new Point((int)(cp.x - f.width), (int) (cp.y - f.height))
  f.show()
}

您无法在属性中设置它的原因是,在评估属性时,尚未在任何地方创建或存储子节点。一种替代方法是将其设置为子内容块的一部分:

  frame(show:true) 
  {
      label "<html>" + (("This is a very long label."*3) + "<BR>")*5
      current.pack()
      Point cp = GraphicsEnvironment.localGraphicsEnvironment.centerPoint
      current.location = new Point((int)(cp.x -current.width/2), (int)(cp.y - current.height/2))
  }

(当前是包含节点的元变量)。

于 2010-04-26T22:36:43.707 回答
0

Swing 功能之一是,它会记住最后的位置和大小(如果可调整大小)

于 2010-04-26T21:06:06.740 回答