Csharp dili ile kronometre nasıl yapılır. Timer nasıl kullanılır.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int t = 0, dk = 0, saat = 0;
double salise = 0;
private void timer1_Tick(object sender, EventArgs e)
{
salise = salise + 1.2;
textBox4.Text = ((int)salise).ToString();
if (salise >= 9)
{
salise = 0;
textBox3.Text = Convert.ToString(t = t + 1);
}
if (t == 60)
{
t = 0;
textBox3.Text = "00";
textBox2.Text = Convert.ToString(dk = dk + 1);
}
if (dk == 60)
{
saat = saat + 1;
dk = 0;
t = 0;
textBox2.Text = "00";
textBox1.Text = Convert.ToString(saat);
}
if (saat == 24)
{
dk = 0;
t=0;
salise = 0;
}
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Enabled = true;
}
private void button2_Click(object sender, EventArgs e)
{
timer1.Enabled = false;
}
private void button3_Click(object sender, EventArgs e)
{
textBox1.Text = "00";
textBox2.Text = "00";
textBox3.Text = "00";
textBox4.Text = "00";
t = 0;
dk = 0;
saat = 0;
salise = 0;
}
}
}
Yazar: TRCodeRooTeR
Tarih: 2022-09-21 06:17:13
Görüntüleme: 833
Yorum: 0