for ( int i = 0; i < 4; ++i )
{
Button b = new Button();
b = new Button();
b.Text = "Вариант ответа " + Convert.ToString(i+1);
b.Size = new System.Drawing.Size(350, 50);
if (i == 0)
{
b.Location = new Point(120, 370);
}
else if (i == 1)
{
b.Location = new Point(140 + b.Size.Width, 370);
}
else if (i == 2)
{
b.Location = new Point(120, 390 + b.Size.Height);
}
else
{
b.Location = new Point(140 + b.Size.Width, 390 + b.Size.Height);
}
b.MouseDown += new MouseEventHandler(button_MouseDown);
b.MouseLeave += new EventHandler(button_MouseLeave);
b.MouseMove += new MouseEventHandler(button_MouseMove);
b.MouseUp += new MouseEventHandler(button_MouseUp);
b.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
b.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
b.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(126)))), ((int)(((byte)(34)))));
b.FlatAppearance.BorderSize = 3;
b.UseVisualStyleBackColor = true;
b.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(126)))), ((int)(((byte)(34)))));
b.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(126)))), ((int)(((byte)(34)))));
this.Controls.Add(b);
}
я все конечно понимаю, но разве нет варианта на js Google API скопировать в буфер браузера? Если предусмотрены разрешения на копирование и вставку - должны быть и методы.