Listviewgadget active frame
Listviewgadget active frame
How to remove the active frame of the gadget highlighting in blue Listviewgadget?
Re: Listviewgadget active frame
Code: Select all
If OpenWindow(0, 100, 100, 400, 300, "Disable Focus Ring", #PB_Window_SystemMenu)
listID = ListIconGadget(#PB_Any, 10, 10, 300, 200, "Column", 150)
For i = 0 To 10
AddGadgetItem(listID, -1, "Row " + Str(i))
Next
; Disable the halo around the table (focus ring)
CocoaMessage(0, GadgetID(listID), "setFocusRingType:", 1) ; 1 = NSFocusRingTypeNone
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
Re: Listviewgadget active frame
Yes, everything works. Thank you!
Re: Listviewgadget active frame
How comes ur lately interested only in "UI cosmetics"?
Seems a good sign: did u solve all the "technical" stuff?
My guess: ur trying to impress some cute Russian girl


Re: Listviewgadget active frame
