如何使文本框在C#中一次显示一个字母的文本?

时间:2014-10-20 00:08:24

标签: c# textbox

不确定我是否正确地工作但是我想知道是否有办法在运行应用程序时让一个句子在文本框中填充一个字母或一个单词。 (在C#中使用Visual Studio)

感谢您的时间

2 个答案:

答案 0 :(得分:0)

您可以在变量中保存完整句子,然后使用TextBox http://msdn.microsoft.com/it-it/library/system.timers.timer(v=vs.110).aspx更新Timer。每个Tick Timer都会更新要添加的当前字母的索引,或者只是将TextBox.Text与句子进行比较并获得第n + 1个字符。

答案 1 :(得分:0)

使用Timer

static int Main()
{
   System.Windows.Forms.Timer myTimer = new System.Windows.Forms.Timer();
   myTimer.Tick += new EventHandler(TimerTick);
   //timer tick inteval in ms
   myTimer.Interval = 5000;
   myTimer.Start();
}

static void TimerTick(object obj, EventArgs e)
{
   //do Logic here
}