- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.jdesktop.swingx.util.WindowUtils.findWindow()
方法的一些代码示例,展示了WindowUtils.findWindow()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WindowUtils.findWindow()
方法的具体详情如下:
包路径:org.jdesktop.swingx.util.WindowUtils
类名称:WindowUtils
方法名:findWindow
暂无
代码示例来源:origin: tmyroadctfig/swingx
public static Window findWindow(Component c) {
if (c == null) {
return JOptionPane.getRootFrame();
} else if (c instanceof Window) {
return (Window) c;
} else {
return findWindow(c.getParent());
}
}
代码示例来源:origin: org.swinglabs.swingx/swingx-all
public static Window findWindow(Component c) {
if (c == null) {
return JOptionPane.getRootFrame();
} else if (c instanceof Window) {
return (Window) c;
} else {
return findWindow(c.getParent());
}
}
代码示例来源:origin: org.codehaus.jtstand/jtstand-desktop
public static Window findWindow(Component c) {
if (c == null) {
return JOptionPane.getRootFrame();
} else if (c instanceof Window) {
return (Window) c;
} else {
return findWindow(c.getParent());
}
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-common
public static Window findWindow(Component c) {
if (c == null) {
return JOptionPane.getRootFrame();
} else if (c instanceof Window) {
return (Window) c;
} else {
return findWindow(c.getParent());
}
}
代码示例来源:origin: com.haulmont.thirdparty/swingx-core
/**
* Shows a login dialog. This method blocks.
* @return The status of the login operation
*/
public static Status showLoginDialog(Component parent, JXLoginPane panel) {
Window w = WindowUtils.findWindow(parent);
JXLoginDialog dlg = null;
if (w == null) {
dlg = new JXLoginDialog((Frame)null, panel);
} else if (w instanceof Dialog) {
dlg = new JXLoginDialog((Dialog)w, panel);
} else if (w instanceof Frame) {
dlg = new JXLoginDialog((Frame)w, panel);
} else {
throw new AssertionError("Shouldn't be able to happen");
}
dlg.setVisible(true);
return dlg.getStatus();
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-core
/**
* Shows a login dialog. This method blocks.
* @return The status of the login operation
*/
public static Status showLoginDialog(Component parent, JXLoginPane panel) {
Window w = WindowUtils.findWindow(parent);
JXLoginDialog dlg = null;
if (w == null) {
dlg = new JXLoginDialog((Frame)null, panel);
} else if (w instanceof Dialog) {
dlg = new JXLoginDialog((Dialog)w, panel);
} else if (w instanceof Frame) {
dlg = new JXLoginDialog((Frame)w, panel);
} else {
throw new AssertionError("Shouldn't be able to happen");
}
dlg.setVisible(true);
return dlg.getStatus();
}
代码示例来源:origin: org.swinglabs.swingx/swingx-core
/**
* Shows a login dialog. This method blocks.
* @return The status of the login operation
*/
public static Status showLoginDialog(Component parent, JXLoginPane panel) {
Window w = WindowUtils.findWindow(parent);
JXLoginDialog dlg = null;
if (w == null) {
dlg = new JXLoginDialog((Frame)null, panel);
} else if (w instanceof Dialog) {
dlg = new JXLoginDialog((Dialog)w, panel);
} else if (w instanceof Frame) {
dlg = new JXLoginDialog((Frame)w, panel);
} else {
throw new AssertionError("Shouldn't be able to happen");
}
dlg.setVisible(true);
return dlg.getStatus();
}
代码示例来源:origin: org.codehaus.jtstand/jtstand-desktop
/**
* Shows a login dialog. This method blocks.
* @return The status of the login operation
*/
public static Status showLoginDialog(Component parent, JXLoginPane panel) {
Window w = WindowUtils.findWindow(parent);
JXLoginDialog dlg = null;
if (w == null) {
dlg = new JXLoginDialog((Frame)null, panel);
} else if (w instanceof Dialog) {
dlg = new JXLoginDialog((Dialog)w, panel);
} else if (w instanceof Frame) {
dlg = new JXLoginDialog((Frame)w, panel);
} else {
throw new AssertionError("Shouldn't be able to happen");
}
dlg.setVisible(true);
return dlg.getStatus();
}
代码示例来源:origin: org.swinglabs.swingx/swingx-all
/**
* Shows a login dialog. This method blocks.
* @return The status of the login operation
*/
public static Status showLoginDialog(Component parent, JXLoginPane panel) {
Window w = WindowUtils.findWindow(parent);
JXLoginDialog dlg = null;
if (w == null) {
dlg = new JXLoginDialog((Frame)null, panel);
} else if (w instanceof Dialog) {
dlg = new JXLoginDialog((Dialog)w, panel);
} else if (w instanceof Frame) {
dlg = new JXLoginDialog((Frame)w, panel);
} else {
throw new AssertionError("Shouldn't be able to happen");
}
dlg.setVisible(true);
return dlg.getStatus();
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-core
/**
* @inheritDoc
*/
@Override
public JDialog getErrorDialog(Component owner) {
reinit();
expandedHeight = 0;
collapsedHeight = 0;
Window w = WindowUtils.findWindow(owner);
JXErrorDialog dlg = null;
if (w instanceof Dialog) {
dlg = new JXErrorDialog((Dialog)w, pane);
} else if (w instanceof Frame) {
dlg = new JXErrorDialog((Frame)w, pane);
} else {
// default fallback to null
dlg = new JXErrorDialog(JOptionPane.getRootFrame(), pane);
}
centerWindow(dlg, owner);
return dlg;
}
代码示例来源:origin: org.swinglabs.swingx/swingx-all
/**
* @inheritDoc
*/
@Override
public JDialog getErrorDialog(Component owner) {
reinit();
expandedHeight = 0;
collapsedHeight = 0;
Window w = WindowUtils.findWindow(owner);
JXErrorDialog dlg = null;
if (w instanceof Dialog) {
dlg = new JXErrorDialog((Dialog)w, pane);
} else if (w instanceof Frame) {
dlg = new JXErrorDialog((Frame)w, pane);
} else {
// default fallback to null
dlg = new JXErrorDialog(JOptionPane.getRootFrame(), pane);
}
centerWindow(dlg, owner);
return dlg;
}
代码示例来源:origin: org.swinglabs.swingx/swingx-core
/**
* @inheritDoc
*/
@Override
public JDialog getErrorDialog(Component owner) {
reinit();
expandedHeight = 0;
collapsedHeight = 0;
Window w = WindowUtils.findWindow(owner);
JXErrorDialog dlg = null;
if (w instanceof Dialog) {
dlg = new JXErrorDialog((Dialog)w, pane);
} else if (w instanceof Frame) {
dlg = new JXErrorDialog((Frame)w, pane);
} else {
// default fallback to null
dlg = new JXErrorDialog(JOptionPane.getRootFrame(), pane);
}
centerWindow(dlg, owner);
return dlg;
}
代码示例来源:origin: org.codehaus.jtstand/jtstand-desktop
/**
* @inheritDoc
*/
@Override
public JDialog getErrorDialog(Component owner) {
reinit();
expandedHeight = 0;
collapsedHeight = 0;
Window w = WindowUtils.findWindow(owner);
JXErrorDialog dlg = null;
if (w instanceof Dialog) {
dlg = new JXErrorDialog((Dialog)w, pane);
} else if (w instanceof Frame) {
dlg = new JXErrorDialog((Frame)w, pane);
} else {
// default fallback to null
dlg = new JXErrorDialog(JOptionPane.getRootFrame(), pane);
}
centerWindow(dlg, owner);
return dlg;
}
代码示例来源:origin: com.haulmont.thirdparty/swingx-core
/**
* @inheritDoc
*/
@Override
public JDialog getErrorDialog(Component owner) {
reinit();
expandedHeight = 0;
collapsedHeight = 0;
Window w = WindowUtils.findWindow(owner);
JXErrorDialog dlg = null;
if (w instanceof Dialog) {
dlg = new JXErrorDialog((Dialog)w, pane);
} else if (w instanceof Frame) {
dlg = new JXErrorDialog((Frame)w, pane);
} else {
// default fallback to null
dlg = new JXErrorDialog(JOptionPane.getRootFrame(), pane);
}
centerWindow(dlg, owner);
return dlg;
}
我正在尝试使用 JNA 将名为 MyWindowTitle 的窗口置于最前面。 import com.sun.jna.Native; import com.sun.jna.win32.StdCallL
我需要将服务应用程序与 vcl 应用程序进行通信。我的旧应用程序是一个控制台,控制台与 vcl 应用程序通信没有问题。现在我将控制台应用程序迁移到 srv 应用程序。旧的通信使用 FindWindow
如果我只知道窗口标题和类名的一部分,我如何获得窗口的描述符? 最佳答案 FindWindow() 需要完整的标题。在循环中使用 EnumWindows() 或 GetWindow() 来枚举所有可用的
我是 WindowsForms 的新手,正在构建一个小型示例应用程序。 我正在尝试构建一个将文本键入记事本窗口的应用程序,但在从 dll 导入时出现错误 FindWindow does not exi
我正在制作叠加层。我这里有这段代码 using System; using System.Collections.Generic; using System.Component
有没有办法通过不完整的名称找到窗口? 例如,您如何找到可以有多个标题名称的 Google Chrome 窗口? 像 Stack Overflow - Google Chrome 如果窗口始终与函数同名
我试图让一个函数找到一个窗口句柄。我已经通过以下方式多次这样做了: HWND windowHandle windowHandle = FindWindow(NULL, "NameOfWindowIAm
我有一个程序可以在 Windows 8.1 上打开一个窗口(实际上是一个视频游戏)。然后该程序以我编译的 C++ .DLL 的形式调用“扩展”。在该 DLL 中,我需要获取调用该 DLL 的程序(视频
我有 Windows 8 和 Visual Studio 2013。 #include #include using namespace std; int main() { HWND hWnd =
我只想知道为什么这段代码不起作用? HWND hWnds = FindWindow(NULL,(LPCTSTR)"Calculator"); 它总是为 hWnd 返回 NULL.... 知道如
我计划用 C++ 制作一个简单的训练控制台,但第一步我遇到了 FindWindow() 的问题 #include #include #include #include #include LP
从服务应用程序调用时,Windows API::FindWindow 函数失败。 GetLastError() 也返回 0(成功?)。这是一些特权\访问权限问题吗?你认为这是设计问题,我应该使用另一种
我正在编写的应用程序正在使用虚拟键盘。要显示、隐藏、调整大小或移动虚拟键盘,我首先需要通过调用 FindWindow 函数获取它的句柄,然后通过 PostMessage 向它发送一些消息。 由于我没有
示例 Outlook:它只有一个进程但可以有多个窗口(用户可以双击电子邮件在自己的窗口中打开它) 因此,我无法使用 Process.GetProcess() 遍历流程并比较标题。 FindWindow
有谁知道什么会导致 FindWindow 返回错误的函数: ALREADY_EXISTS error (183) 我能理解 FILE_NOT_FOUND (2) ,但为什么会返回 183 ? 最佳答案
这不是一个复杂的问题。我无法找到属于 iTunes 的句柄。但是虽然 iTunes 在后台运行,但它一直告诉我找不到该窗口。所以我继续检查我是否错过了输入窗口名称,但是 spy ++向我指出我使用了正
我正在尝试在 FM 中使用 findwindow api 调用,我可以在 VCL 应用程序中使用它查找,但不能在 FM 中使用。 这是我的代码 function WindowExists(ti
我创建了一个没有显示的窗口: int main() { CreateWindow("SysListView32","Geek",0, 0, 0, 0, 0,NULL, NULL, (HINST
这个问题在这里已经有了答案: Python Window Activation (7 个答案) 关闭 3 年前。 我正在尝试查找 Microsoft excel 是否有一个打开的窗口 import
所以我试图创建一个迷彩解锁器,但我从来没有遇到过通过 findwindow 获取进程 ID 的问题 但现在我试图找到 black ops 2 的 proc id 但窗口名称不起作用 使命召唤®:黑色行
我是一名优秀的程序员,十分优秀!