views:

712

answers:

2

Question:

  • Looking for a simple, Windows Forms tutorial:
    • Get some user input from a text box into a variable
A: 

How about this one?

The TextBox Widget

It's part of a series of articles using IronPython and WinForms

Enjoy!

+1  A: 

The exact assignment is as follows:

string str = yourTextBoxName.Text;

For more information on you can check QuickStart Tutorials

nils_gate