Domande taggate «firemonkey»

2
Come creare il modulo "No Activate" in Firemonkey
In XCode aggiungendo questi metodi alla sottoclasse NSView è possibile impedire che la finestra diventi attiva quando si fa clic su di essa: - (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent { return YES; } - (BOOL)acceptsFirstMouse:(NSEvent )theEvent { return YES; } - (void)mouseDown:(NSEvent )theEvent { [[[NSApp]] preventWindowOrdering]; } Nella piattaforma Windows Viene eseguito con …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.