Du skulle kunne bruge denne kode ..
hvis du skal have teksten til at vente kan du jo sætte en timer på ..
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace textbox_text_wait
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_Click(object sender, EventArgs e)
{
textBox1.Text = "Hi world";
}
}
}