S samperizal Active Member Licensed User Longtime User Nov 24, 2019 #1 Regards. It is possible to change the font of the menubar by code. Thank you
Cableguy Expert Licensed User Longtime User Nov 24, 2019 #2 Maybe this will help... https://www.b4x.com/android/forum/threads/css-style-reference-guide.58264/ Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Nov 25, 2019 #3 Example: B4X: Log(MenuBar1.Style) CSSUtils.SetStyleProperty(MenuBar1, "-fx-font-family", "Georgia") Upvote 0
stevel05 Expert Licensed User Longtime User Nov 25, 2019 #4 Or B4X: Dim MBV As B4XView = MenuBar1 MBV.Font = fx.CreateFont("Georgia",12,False,False) Requires XUI Views lib to be selected Upvote 0
Or B4X: Dim MBV As B4XView = MenuBar1 MBV.Font = fx.CreateFont("Georgia",12,False,False) Requires XUI Views lib to be selected
Erel B4X founder Staff member Licensed User Longtime User Nov 25, 2019 #5 Your solution is better! Upvote 0