アプリケーションをデュアルスクリーンモードで実行する必要があります。独立したウィンドウとして両方の画面でアプリケーションを実行し、同じアプリケーションモデルを共有するにはどうすればよいですか?
質問する
3882 次
2 に答える
8
私が間違っていなければ、これはあなたを助けるかもしれません。まず、各スクリーン デバイスにフレームを配置します。
frame1.setLocation(pointOnFirstScreen);
frame2.setLocation(pointOnSecondScreen);
最大化するには:
frame.setExtendedState(Frame.MAXIMIZED_BOTH);
作業例:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Point;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
public class GuiApp1 {
protected void twoscreen() {
Point p1 = null;
Point p2 = null;
for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment ().getScreenDevices()) {
if (p1 == null) {
p1 = gd.getDefaultConfiguration().getBounds().getLocation();
} else if (p2 == null) {
p2 = gd.getDefaultConfiguration().getBounds().getLocation();
}
}
if (p2 == null) {
p2 = p1;
}
createFrameAtLocation(p1);
createFrameAtLocation(p2);
}
private void createFrameAtLocation(Point p) {
final JFrame frame = new JFrame();
frame.setTitle("Test frame on two screens");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel(new BorderLayout());
final JTextArea textareaA = new JTextArea(24, 80);
textareaA.setBorder(BorderFactory.createLineBorder(Color.DARK_GRAY, 1));
panel.add(textareaA, BorderLayout.CENTER);
frame.setLocation(p);
frame.add(panel);
frame.pack();
frame.setExtendedState(Frame.MAXIMIZED_BOTH);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new GuiApp1().twoscreen();
}
});
}
}
于 2012-11-15T11:46:13.800 に答える
2
GraphicsDevice API を確認する必要があります。すばらしい例が見つかります。
オラクルから引用:
マルチスクリーン環境では、GraphicsConfiguration オブジェクトを使用して、複数のスクリーンにコンポーネントをレンダリングできます。次のコード サンプルは、GraphicsEnvironment 内の各画面デバイスで各 GraphicsConfiguration の JFrame オブジェクトを作成する方法を示しています。
GraphicsEnvironment ge = GraphicsEnvironment.
getLocalGraphicsEnvironment();
GraphicsDevice[] gs = ge.getScreenDevices();
for (int j = 0; j < gs.length; j++) {
GraphicsDevice gd = gs[j];
GraphicsConfiguration[] gc =
gd.getConfigurations();
for (int i=0; i < gc.length; i++) {
JFrame f = new
JFrame(gs[j].getDefaultConfiguration());
Canvas c = new Canvas(gc[i]);
Rectangle gcBounds = gc[i].getBounds();
int xoffs = gcBounds.x;
int yoffs = gcBounds.y;
f.getContentPane().add(c);
f.setLocation((i*50)+xoffs, (i*60)+yoffs);
f.show();
}
}
于 2012-11-15T11:19:55.657 に答える