System.Windows.Forms.Form F = new System.Windows.Forms.Form();
System.Windows.Forms.ComboBox cb = new System.Windows.Forms.ComboBox();
cb.Items.AddRange(new object[] {"Поставьте","котика","на аватарку"});
F.Controls.Add(cb);
System.Windows.Forms.Button bt = new System.Windows.Forms.Button();
bt.Text = "Жмакен";
bt.Location = new System.Drawing.Point(50,50);
bt.Size=new System.Drawing.Size(75, 23);
bt.Click+= delegate(object sender, System.EventArgs e)
{
project.Variables["value"].Value= cb.Text;
F.Dispose();
};
F.Controls.Add(bt);
F.ShowDialog();