What is a Windows Registered Java Window Class?

I am writing a C ++ application that fetches a Java window and sets it as maximum. I am wondering what is the registered Java window class forFindWindow(LPCTSTR lpClassName, LPCTSTR lpWindowName);

+3


source to share


1 answer


In JRE 1.6, the Windows Win32 class name for the top-level application window is set to SunAwtFrame

. Prior to version 1.6, it inherited from the Java class name. Here are some details .



+2


source







All Articles