namespace ProgrammName
{
public partial class Form3 : Form
{
int n = 0;
int[] answer;
int correct = 0;
public Form3()
{
InitializeComponent();
answer = new int[19];
}
public void show(int n)
{
int n1 = n + 1;
label1.Text = "Вопрос" + " " + n1;
switch (n)
{
//Вопрос 1
case 0:
pictureBox1.Image = new Bitmap(ProgrammName.Properties.Resources.t1);
label2.Text = "";
radioButton1.Text = "60 000";
radioButton2.Text = "20 000";
radioButton3.Text = "80 000";
if (radioButton3.Checked == true)
{
correct++;
}
radioButton4.Text = "70 000";
pictureBox1.Visible = true;
pictureBox2.Visible = false;
break;
//Вопрос 2
case 1:
label2.Text = "";
radioButton1.Text = "20";
radioButton2.Text = "8";
radioButton3.Text = "10";
radioButton4.Text = "5";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
answer[n] = 1;
break;
//Вопрос 3
case 2:
label2.Text = "";
radioButton1.Text = "30";
radioButton2.Text = "3";
radioButton3.Text = "12";
radioButton4.Text = "6";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
answer[n] = 3;
break;
//Вопрос 4
case 3:
pictureBox1.Image = new Bitmap(ProgrammName.Properties.Resources.t4);
label2.Text = "";
radioButton1.Text = "8";
radioButton2.Text = "13";
radioButton3.Text = "5";
radioButton4.Text = "2";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
answer[n] = 2;
break;
//Вопрос 5
case 4:
pictureBox1.Image = new Bitmap(ProgrammName.Properties.Resources.t5);
label2.Text = "";
radioButton1.Text = "4й";
radioButton2.Text = "7й";
radioButton3.Text = "3й";
radioButton4.Text = "5й";
pictureBox1.Visible = true;
pictureBox2.Visible = false;
answer[n] = 2;
break;
//Вопрос 6
case 5:
pictureBox1.Image = new Bitmap(ProgrammName.Properties.Resources.t6);
pictureBox2.Image = new Bitmap(ProgrammName.Properties.Resourcest6_1);
label2.Text = "";
radioButton1.Text = "10";
radioButton2.Text = "5";
radioButton3.Text = "8";
radioButton4.Text = "20";
pictureBox1.Visible = true;
pictureBox2.Visible = true;
break;
//Вопрос 7
case 6:
label2.Text = "";
radioButton1.Text = "4";
radioButton2.Text = "2";
radioButton3.Text = "8";
radioButton4.Text = "6";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
break;
//Вопрос 8
case 7:
label2.Text = "";
radioButton1.Text = "21";
radioButton2.Text = "12";
radioButton3.Text = "14";
radioButton4.Text = "26";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
break;
//Вопрос 9
case 8:
label2.Text = "";
radioButton1.Text = "2";
radioButton2.Text = "3";
radioButton3.Text = "8";
radioButton4.Text = "10";
pictureBox1.Visible = false;
pictureBox2.Visible = false;
break;
//Вопрос 10
case 9:
label2.Text = "";
radioButton1.Text = "50";
radioButton2.Text = "10";
radioButton3.Text = "20";
radioButton4.Text = "100";
pictureBox1.Visible = false;
break;
}
}
private void button1_Click(object sender, EventArgs e)
{
n++;
if (n > 19) n = 19;
show(n);
}
private void button2_Click(object sender, EventArgs e)
{
n--;
if (n < 0) n = 0;
show(n);
}
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
answer[n] = 1;
}
private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
answer[n] = 2;
}
private void radioButton3_CheckedChanged(object sender, EventArgs e)
{
answer[n] = 3;
}
private void radioButton4_CheckedChanged(object sender, EventArgs e)
{
answer[n] = 4;
}
private void Form3_Load(object sender, EventArgs e)
{
radioButton1.Checked = false;
radioButton2.Checked = false;
radioButton3.Checked = false;
radioButton4.Checked = false;
}
}
}
pictureBox.Hide();
перед следующим вопросом, но появилась ещё проблема в том, что при возврате на 1ый вопрос он PictureBox скрывает полностью и в последующих вопросах он от слова вообще не показывает, а мне надо, чтобы PictureBox был задействован до конца тестирования, т.к в нём хранятся изображения, нужные для системы тестирования. public void show(int n)
{
int n1 = n + 1;
label1.Text = "Вопрос" + " " + n1;
switch (n)
{
//Вопрос 1
case 0:
pictureBox1.Image = new Bitmap(ProgramName.Properties.Resources.t1);
label2.Text = "В электронной таблице Excel отражены данные о деятельности страховой компании за 4 месяца. Страховая компания осуществляет страхование жизни, недвижимости, автомобилей и финансовых рисков своих клиентов. Суммы полученных по каждому виду деятельности за эти месяцы страховых взносов(в тысячах рублей) также вычислены в таблице. Известно, что за эти 4 месяца компании пришлось выплатить двум клиентам по 20 000 рублей каждому. Какова прибыль страховой компании в рублях за прошедшие 4 месяца ?";
radioButton1.Text = "60 000";
radioButton2.Text = "20 000";
radioButton3.Text = "80 000";
radioButton4.Text = "70 000";
break;
//Вопрос 2
case 1:
label2.Text = " ";
radioButton1.Text = " ";
radioButton2.Text = " ";
radioButton3.Text = " ";
radioButton4.Text = " ";
break;