B4J Question [ Border Color ] button border color does not change

Waldemar Lima

Well-Known Member
Licensed User
Longtime User
Hi guys, I'm having work to change this "blue" set to border on button ...
how do I remove it?

1635872007091.png
 

TILogistic

Expert
Licensed User
Longtime User
By code:
Use CSSUtils
B4X:
    CSSUtils.SetStyleProperty(Button1, "-fx-faint-focus-color", "transparent")
    CSSUtils.SetStyleProperty(Button1, "-fx-focus-color", "transparent")

or by design
1635925230164.png


tip:
 
Last edited:
Upvote 0
Top