我想使用 Java 透明 JFrame。我正在使用 JNA JAR 它是平台。我试过这段代码:
WindowUtili.setWindowTransperncey(this,true);
但它会引发以下错误:Runtime Error ClassNotFound
我想知道上述错误的原因。
我想使用 Java 透明 JFrame。我正在使用 JNA JAR 它是平台。我试过这段代码:
WindowUtili.setWindowTransperncey(this,true);
但它会引发以下错误:Runtime Error ClassNotFound
我想知道上述错误的原因。
你得到一个ClassNotFound
异常,因为WindowUtili
它不是一个类,这个类被调用WindowUtils
。
此外,您想要的方法是setWindowTransparent
,而不是setWindowTransperncey
。