2
Firemonkey'de "Etkinleştirme Yok" formu nasıl oluşturulur
XCode'da NSView alt sınıfınıza şu yöntemleri ekleyerek, üzerine tıklandığında pencerenin aktif hale gelmesini önleyebilirsiniz: - (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent { return YES; } - (BOOL)acceptsFirstMouse:(NSEvent )theEvent { return YES; } - (void)mouseDown:(NSEvent )theEvent { [[[NSApp]] preventWindowOrdering]; } Windows platformunda Bu basit kodla yapılır: HWND hWnd = FindWindowW((String("FM") + fmxForm->ClassName()).c_str(), fmxForm->Caption.c_str()); SetWindowLong(hWnd, GWL_EXSTYLE, …