It is possible yes, to do this you need to add a new "Toolbaritem" to your taskbar.
If you are developing the page directly in C# you can do as follows
this.ToolbarItems.Add(new ToolbarItem("nome", "icone", () =>
{
// ação ao clicar no icone
}, ToolbarItemOrder.Primary));
Where:
The "name" would be the name to appear when the user pressed and held the icon, or if there is no icon image, in which case the text is spelled.
The "icon" would be the icon you will use for the option, in this case the user image
The lambid expression "() => { //code here }" would serve to perform some action by clicking on the icon (aka. User photo =P )
And the "Toolbaritemorder.Primary" serves to indicate the position that the item will be in the menu, if you put "Toolbaritemorder.Secondary" the item will be in an options menu (The same place you usually find the "Settings" of an app, that menu with three dots "...")already if you put "Toolbaritemorder.Primary" it will show up as an item in the menu, showing the icon you set to it or the user photo in your case =)
I hope I’ve helped =)
Where do I add this new Toolbaritem ? In Activity ?
– AndreeH
Exactly, in the example, I am creating my screen directly by code, that is, I do not have the layout XAML, then I add it to the class builder, which I inherit from Contentpage
– Murilo Viviani
can, just do not know now how to display the image there without Image. Good Tips ?
– AndreeH
The user image will be saved on the Device or it will be downloaded from the internet?
– Murilo Viviani
I’m returning her from the comic to a property. I can’t use this property to display the photo ?
– AndreeH
Huuum, you return the entire BD image or Path to it on the device?
– Murilo Viviani
maybe if you change the image property of the object "Toolbaritem" and indicate the file you want to show may be possible, but I can’t tell you for sure, because I never did it this way =\
– Murilo Viviani
I tried to do it but it didn’t work. hehe. tranquil. thanks
– AndreeH
Nothing, in case you reach a solution post the answer here, it will be nice to know how you arrived at it =D
– Murilo Viviani