Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 91519

How to set background image in tabbed page?

$
0
0

I am trying to add a background image for my tabbed page. But I am not able to set it somehow.
And even I want to change the background color of the tabbed page bar.

code-behind:

viewModel = new UserRoomsViewModel(App.LoggedInUserId);
        foreach (Room roomEntity in viewModel.roomDataStore)
        {
            Children.Add(new MyDevices(roomEntity.RoomId, roomEntity.RoomName)
            {
                Title = roomEntity.RoomName
            });
        }

Viewing all articles
Browse latest Browse all 91519

Trending Articles