Guest User

Untitled

a guest
Feb 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. private string _myText;
  2. public string MyText
  3. {
  4. get { return _myText; }
  5. set
  6. {
  7. _myText = value;
  8. //reflect new data in textbox
  9. }
  10. }
  11.  
  12. private void textbox_TextChanged(object sender, EventArgs e)
  13. {
  14. MyText = textbox.Text;
  15. }
Add Comment
Please, Sign In to add comment