Codingan Quiz
Codingan Quiz
Nim: 2104030004
Codingan:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace Pemrograman_Jaringan_A5_part1
{
public partial class Quiz_Ramadhani : Form
{
private Stopwatch Jam = null;
public Quiz_Ramadhani()
{
InitializeComponent();
}
//===================================
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
switch (selectedItem)
{
case "Regular":
textBox2.Text = "1 Jam";
textBox3.Text = "Rp. 2000";
break;
case "Hemat":
textBox2.Text = "5 Jam";
textBox3.Text = "Rp. 9000";
break;
case "Game 1":
textBox2.Text = "2 Jam";
textBox3.Text = "Rp. 5000";
break;
case "Game 2":
textBox2.Text = "4 Jam";
textBox3.Text = "Rp. 9000";
break;
default:
textBox2.Text = "Silakan pilih jam.";
break;
}
}
button1.Enabled = true;
}
}
}