Blueforcer Well-Known Member Licensed User Longtime User Apr 8, 2019 #1 Good Morning, How can i change the color of the whole Dialog? I found everything exept the list color itself. Thanks
Good Morning, How can i change the color of the whole Dialog? I found everything exept the list color itself. Thanks
Erel B4X founder Staff member Licensed User Longtime User Apr 8, 2019 #2 Are you using the list template? Upvote 0
Blueforcer Well-Known Member Licensed User Longtime User Apr 8, 2019 #3 Yes, but i also using InputTemplate Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Apr 8, 2019 #4 B4X: Dim l As B4XListTemplate l.Initialize l.Options = Array("a", "b", "c") l.CustomListView1.DefaultTextBackgroundColor = 0xFFDDDDDD l.CustomListView1.DefaultTextColor = xui.Color_Black l.CustomListView1.AsView.Color = 0xFFDDDDDD dialog.BackgroundColor = 0xFFDDDDDD dialog.ButtonsColor = 0xFF8F8F8F dialog.ShowTemplate(l, "Yes", "No", "Cancel") Upvote 0
B4X: Dim l As B4XListTemplate l.Initialize l.Options = Array("a", "b", "c") l.CustomListView1.DefaultTextBackgroundColor = 0xFFDDDDDD l.CustomListView1.DefaultTextColor = xui.Color_Black l.CustomListView1.AsView.Color = 0xFFDDDDDD dialog.BackgroundColor = 0xFFDDDDDD dialog.ButtonsColor = 0xFF8F8F8F dialog.ShowTemplate(l, "Yes", "No", "Cancel")