isimonersileri

Projenize Yardım


İletişim Formu


C# ile Kronemetre Nasıl Yapılır

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

Benzer Popüler Yayınlarımızı da İnceleyin;


C# Gelişmiş Çok Fonksiyonlu Hesap Makinesi Kodları

C# ile çok fonksiyonlu hesap makinesi yapımı kodları....

TRCodeRooTeR 8443 1
2019-12-22 05:12:22


C# Bankamatik Otomasyonu Yapımı ve Kodları

C# ile yazılmış Bankamatik Otomasyonu program kodları...

TRCodeRooTeR 6990 1
2020-11-16 10:17:29




Yorumunuzu Bırakın

Adınız:
E-Mail:
Yorumunuz:



Günlük Görüntüleme

Toplam Görüntüleme

Kayıt Ol

Giriş Yap
Üye Ol

Paylaş

Copyright © 2017 - 2024 Designed By WebMaster All Rights Reserved.