Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 965183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:57:17+00:00 2026-05-16T01:57:17+00:00

In my windows phone 7 App I have a single line textbox. When the

  • 0

In my windows phone 7 App I have a single line textbox. When the user presses {ENTER} I want to accept the textbox value and switch the textbox back into normal non-edit mode.

Basically, is there a way to programmatically cancel editing a textbox?

I have tried force the Visual State Manager into Normal mode which does change the visual style, but the textbox is still in edit mode and on-screen keyboard is still showing.

            VisualStateManager.GoToState(
                this.MyTextBox,
                "Normal",
                true);

            VisualStateManager.GoToState(
                this.MyTextBox,
                "Unfocused",
                true);

Also tried to programmatically select a parent control but that doesn’t seem to work either.

I think I must be missing something simple, someone must have done this a million times – any help much appreciated.

Thanks,

Update: I tried to set focus to another Control but that wasn’t working, the SIP keyboard would never disappear.

But I figured it out using another method. The trick was to use the IsReadOnly flag. When lost focus or enter was pressed I set the control back to read only which updates the style. All I had to do was update my visual stlyes so it looked right and now works perfectly.

For what it’s worth, my code now looks something like this:

    private void MyTextBox_GotFocus(object sender, RoutedEventArgs e)
    {
        this.MyTextBox.IsReadOnly = false;
        this.MyTextBox.SelectAll();            
    }

    private void MyTextBox_LostFocus(object sender, RoutedEventArgs e)
    {
        this.MyTextBox.IsReadOnly = true;
    }

   private void MyTextBox_KeyUp(object sender, KeyEventArgs e)
    {
        if (e.Key == Key.Enter)
        {

           this.MyTextBox.IsReadOnly = true;
            VisualStateManager.GoToState(
                this.MyTextBox,
                "ReadOnly",
                true);
            VisualStateManager.GoToState(
                this.MyTextBox,
                "Unfocused",
                true);
            VisualStateManager.GoToState(
                this.MyTextBox,
                "Valid",
                true);
       }
   }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T01:57:17+00:00Added an answer on May 16, 2026 at 1:57 am

    Two options:

    1. Call Focus() on some other irrelevant control (maybe a Label?)
    2. Disable then Enable the TextBox (feels hacky, but it works).
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Silverlight Windows Phone 7 app with two pages. I want to
I have a page in a Windows Phone 7 app where the user can
I have to create a Windows Phone 7 app as part of a research
I am using the adRotator control with my Windows Phone 7 app. They have
I have a windows phone 7.1 app that tries to get data from a
We're developing a Windows Phone 7 app and have a TextBlock defined like so:
I have a Windows Phone 7 app that has a space in the name.
In my windows phone 7 app, I have the following code to handle the
In my Windows Phone Mango app, I have a bunch of checkboxes, each corresponding
In my windows phone 7 app i have database-class generated by sqlmetal. in addition,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.