BaconographyWP8.View.ComposeMessagePageView.TextBox_KeyUp C# (CSharp) Method

TextBox_KeyUp() private method

private TextBox_KeyUp ( object sender, System e ) : void
sender object
e System
return void
        private void TextBox_KeyUp(object sender, System.Windows.Input.KeyEventArgs e)
        {
            BindingExpression bindingExpression = ((TextBox)sender).GetBindingExpression(TextBox.TextProperty);
            if (bindingExpression != null)
            {
                bindingExpression.UpdateSource();
            }

            UpdateMenuItems();
        }