Z zapicoj Member Licensed User Longtime User May 21, 2018 #1 Is it posible to change attributes like color and size on title and dialog buttons (positive, cancel, negative) into the custom dialogs ? (B4A V8.00) Appreciate any advise. thx
Is it posible to change attributes like color and size on title and dialog buttons (positive, cancel, negative) into the custom dialogs ? (B4A V8.00) Appreciate any advise. thx
Jorge M A Well-Known Member Licensed User Longtime User May 21, 2018 #2 See this link and this one. Upvote 0
Z zapicoj Member Licensed User Longtime User May 21, 2018 #3 Excelent. First link worked for me, with a small modification. Thank you. Following code works: B4X: Private dialog As CustomLayoutDialog dialog.GetButton(DialogResponse.POSITIVE).TextColor = Colors.Green dialog.GetButton(DialogResponse.POSITIVE).TextSize = 24 Upvote 0
Excelent. First link worked for me, with a small modification. Thank you. Following code works: B4X: Private dialog As CustomLayoutDialog dialog.GetButton(DialogResponse.POSITIVE).TextColor = Colors.Green dialog.GetButton(DialogResponse.POSITIVE).TextSize = 24