Hi Xperts,
How to hide or Remove the pink color bar in the display ?
Any idea ? Is that possible ?
Hi Xperts,
How to hide or Remove the pink color bar in the display ?
Any idea ? Is that possible ?
Hi, @VasanthakumarM-3635 . What the pink color bar do you mean? Could you please post more details about that? If you mean the underline of the editor, you need to create custom renderer to achieve the function on native platform.
@JarvanZhang-MSFT Actually its two page, A,B,D is entry , When I click the entry (OnFocused) it will appear next page, in that next page all selected items will display that is second image.
How I will hide the Pink color bar ? or how to renderer this one ?
How I will hide the Pink color bar ? or how to renderer this one ?
Sorry, I still don't know what is the Pink color bar. Do you mean the drop shape icon?
Hello,
Welcome to our Microsoft Q&A platform!
The focused style seems to be delayed when navigating to another page. Try to call the Unfocus command before the navigation. Check the code:
<Entry x:Name="entry" Focused="Entry_Focused"/>
Entry_Focused event
private async void Entry_Focused(object sender, FocusEventArgs e)
{
entry.Unfocus();
await Navigation.PushAsync(new TestPage());
}
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
7 people are following this question.