AppStore.Templates.WordInfoPage.Word_TextChanged C# (CSharp) Method

Word_TextChanged() private method

Executed when the text in the textbox is changed by the user.
private Word_TextChanged ( object sender, TextChangedEventArgs e ) : void
sender object Object Sender is a parameter called Sender that contains a reference to the control/object that raised the event.
e TextChangedEventArgs TextChangedEventArgs e is a parameter called e that contains the event data, see the TextChangedEventArgs MSDN page for more information.
return void
        private void Word_TextChanged(object sender, TextChangedEventArgs e)
        {
            Enter.IsEnabled = true;
        }
    }