9 Nisan 2013 Salı

C Sharp Uygulamalar Formdan 2. Formu Açma Kapama ve Timer Kullanımı



KONU : C Sharp Uygulamalar - C Sharp ( C# ) Form Uygulamalar iki form kullanarak birinci formda ikinci formu açmak ve Açılan formu belli bir süre sonra kapama




UYGULAMAYI İNDİR



//Form1 tarafı : Bu kısım program açılır açılmaz çalışacak kısım. Burda Formu aç butonuna tıklanınce ikinci formu açacağız

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;

namespace FormdanYeniFormAcmaKapama
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        // formu aç butonuna tıklandığında ikinci formu göstermeye başla

        private void btnFormuAc_Click(object sender, EventArgs e)
        {

            Form2 form2 = new Form2();

            form2.Show();

            
        }
    }
}





//Form2 tarafı : Bu tarafda from açılınca, timer nesnesi çalışmaya başlayacak belirtilen süre dolunca otomatik olarak formu kapatacak.

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;

namespace FormdanYeniFormAcmaKapama
{
    public partial class Form2 : Form
    {
        Timer timer = new Timer();

        int timercounter = 0;

        public Form2()
        {
            InitializeComponent();
        }

        // Form2 load kısmı : timer aralığını ve timer tick olayını hangi metodun yapacağnı

        // Atayacağız

        private void Form2_Load(object sender, EventArgs e)
        {
            timer.Interval = 1000;

            timer.Tick += new EventHandler(timer_Tick);

            timer.Start();
        }

        // Timer tick olayı oldugunda çalışacak kısım

        // eğer timercounter belirtilen değere ulşamışsa formu kapa

        void timer_Tick(object sender, EventArgs e)
        {
            if (timercounter++ > 5)
            {
                this.Close();
            }
        }

    }
}



UYGULAMAYI İNDİR

Hiç yorum yok :

Yorum Gönder