System.Windows.Forms.Form F = new System.Windows.Forms.Form();
F.Text = "Наша форма";
//создаем текстбокс
System.Windows.Forms.TextBox textb = new System.Windows.Forms.TextBox();
//указываем местоположение
textb.Location = new System.Drawing.Point(50,50);
//так же можно указать размеры текстбокса
textb.Width=200;
// добавляем его на форму
F.Controls.Add(textb);
//создаем текстбокс
System.Windows.Forms.TextBox textb2 = new System.Windows.Forms.TextBox();
//указываем местоположение
textb2.Location = new System.Drawing.Point(50,130);
//так же можно указать размеры текстбокса
textb2.Width=200;
// добавляем его на форму
F.Controls.Add(textb2);
//создаем кнопку
System.Windows.Forms.Button button = new System.Windows.Forms.Button();
//задаем имя чекбоксам
button.Text = "ID";
//положение в окне
button.Location = new System.Drawing.Point(110,20);
//размер кнопочки
button.Size=new System.Drawing.Size(75, 20);
//кидаем на форму
F.Controls.Add(button);
//создаем кнопку
System.Windows.Forms.Button button1 = new System.Windows.Forms.Button();
//задаем имя чекбоксам
button1.Text = "Пароль";
//положение в окне
button1.Location = new System.Drawing.Point(110,100);
//размер кнопочки
button1.Size=new System.Drawing.Size(75, 20);
//кидаем на форму
F.Controls.Add(button1);
//создаем кнопку
System.Windows.Forms.Button button2 = new System.Windows.Forms.Button();
//задаем имя чекбоксам
button2.Text = "ОК";
//положение в окне
button2.Location = new System.Drawing.Point(185,202);
//размер кнопочки
button2.Size=new System.Drawing.Size(100, 60);
//кидаем на форму
F.Controls.Add(button2);
button2.Click += (delegate
{
project.Variables["answer"].Value = textb.Text;
project.Variables["answer2"].Value = textb2.Text;
F.Dispose();
});
textb2.Text=project.Variables["answer2"].Value;
F.AcceptButton = button2;
F.ShowDialog();