Aplikasi Stopwatch |
Aplikasi pengukur waktu untuk melakukan batasan, kecepatan, besaran waktu untuk melakukan pemberhentian/stop secara cepat dan akurat.
Hasil Aplikasi Stopwatch |
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 Pertemuan1_AplikasiStopwatch
{
public partial class Form1 : Form
{
private Stopwatch stopw = null;
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void timer1_Tick(object sender, EventArgs e)
{
if (stopw != null)
{
label1.Text = stopw.Elapsed.ToString();
}
}
private void Button1_Click(object sender, EventArgs e)
{
stopw = new Stopwatch();
stopw.Start();
Button1.Enabled = false;
}
private void Button2_Click(object sender, EventArgs e)
{
stopw.Stop();
Button1.Enabled = true;
}
private void button3_Click(object sender, EventArgs e)
{
stopw.Reset();
Button1.Enabled = true;
}
}
}
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 Pertemuan1_AplikasiStopwatch
{
public partial class Form1 : Form
{
private Stopwatch stopw = null;
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void timer1_Tick(object sender, EventArgs e)
{
if (stopw != null)
{
label1.Text = stopw.Elapsed.ToString();
}
}
private void Button1_Click(object sender, EventArgs e)
{
stopw = new Stopwatch();
stopw.Start();
Button1.Enabled = false;
}
private void Button2_Click(object sender, EventArgs e)
{
stopw.Stop();
Button1.Enabled = true;
}
private void button3_Click(object sender, EventArgs e)
{
stopw.Reset();
Button1.Enabled = true;
}
}
}
INGAT!!
Jika Anda kurang puas atau ingin menambahkan ide
Anda dapat mengkostumnya di Form/View code nya
Untuk keterangan lebih lanjut lihat slide
Download Slide
Download Program
0 komentar:
Posting Komentar