Remove Text Editor (pink Color Bar)

Vasanthakumar M 251 Reputation points
2021-04-22T06:31:04.697+00:00

Hi Xperts,

            How to hide or Remove the pink color bar in the display ? 

Any idea ? Is that possible ?

Developer technologies | .NET | Xamarin
{count} votes

Accepted answer
  1. JarvanZhang 23,971 Reputation points
    2021-04-22T10:06:41.34+00:00

    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.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.