timer' ı nasıl kullancam.
yardımcı olursanız çok sevinirim şu butonun içindeki komutu yazsanız.
yardımcı olursanız çok sevinirim şu butonun içindeki komutu yazsanız.
Buyur kardeşim:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
listBox1.Items.Add(textBox1.Text);
timer1.Stop();
}
}
}
timer1 süresini kafana göre girersen o şekilde ekler.