Çok iyisin ama listboxta 1. system.string[] şeklinde bir gösterim yapyıyor benim textbox içeriğini yazdırmıyo.
ö.d ilgin33 aklıma proje fikirleri gelince yapmaya çalışıyorum takıldığım yerlerde google dan araştırma yapıyorum çok fazla geliştim proje geliştirerek.
Bir örnek verebilirim mesela : (4 buton 1 textbox kullanarak yaptım, buton numaralarına dikkat ederek form dizaynını yaparak kodları girebilirsin)
public partial class Form1 : Form
{
int key;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
key++;
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = key + " defa tıklandı";
if (key == 0)
{
textBox1.Text = "Hiç tıklanmadı!";
}
if (key >= 100)
{
MessageBox.Show("Çok fazla tıkladın buton yanacak!");
key = 0;
}
}
private void button3_Click(object sender, EventArgs e)
{
textBox1.Clear();
key = 0;
}
private void button4_Click(object sender, EventArgs e)
{
Application.Exit();
}
}