标签: kinect processing simple-openni
我目前正在使用SimpleOpenNI和Processing在kinect上创建一个项目,并且是新手。 我想知道如何将输出窗口保持在最顶层...即使我将焦点切换到其他应用程序,如powerpoint或vlc ??
答案 0 :(得分:1)
试试frame.setAlwaysOnTop(true);。它来自Window类,但处理的frame变量是AWT Frame,其扩展为Window。
frame.setAlwaysOnTop(true);
Window
frame
AWT Frame
Documentation