2
Firemonkey에서 "No Activate"양식을 만드는 방법
XCode에서 이러한 메소드를 NSView 서브 클래스에 추가하면 클릭시 창이 활성화되지 않을 수 있습니다. - (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent { return YES; } - (BOOL)acceptsFirstMouse:(NSEvent )theEvent { return YES; } - (void)mouseDown:(NSEvent )theEvent { [[[NSApp]] preventWindowOrdering]; } Windows 플랫폼에서이 간단한 코드로 수행됩니다. HWND hWnd = FindWindowW((String("FM") + fmxForm->ClassName()).c_str(), fmxForm->Caption.c_str()); SetWindowLong(hWnd, GWL_EXSTYLE, GetWindowLong(hWnd, GWL_EXSTYLE) …