«firemonkey» etiketlenmiş sorular

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, …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.