import System
from System import *
import clr
bl = IN[0]
clr.AddReference("System.Windows.Forms")
clr.AddReference("System.Drawing")
import System.Windows.Forms.DialogResult
class MainForm(System.Windows.Forms.Form):
def __init__(self):
self.InitializeComponent()
def InitializeComponent(self):
self._textBox1 = System.Windows.Forms.TextBox()
self.SuspendLayout()
#
# textBox1
#
self._textBox1.Location = System.Drawing.Point(24, 81)
self._textBox1.Name = "textBox1"
self._textBox1.Size = System.Drawing.Size(268, 20)
self._textBox1.TabIndex = 0
#
# MainForm
#
self.ClientSize = System.Drawing.Size(331, 174)
self.Controls.Add(self._textBox1)
self.Name = "MainForm"
self.Text = "Solution_1"
self.ResumeLayout(False)
self.PerformLayout()
#System.Windows.Forms.Application.Run(MainForm.ShowDialog)
dialog = MainForm()
dialog.ShowDialog()
OUT = dialog._textBox1.Text.ToString()