所以我在 C# 中工作,有点初学者,我四处搜索但找不到任何东西。
我的屏幕上有一个 TextBlock 和一个 Button,每次按下按钮时,我都希望新文本成为 TextBlock 的内容,这是我目前所拥有的,但它只显示最后一行,谢谢。
string[] arr = new string[4];
arr[0] = "Hello and Welcome";
arr[1] = "To the new app";
arr[2] = "enjoy your stay";
arr[3] = "press next to continue";
for (int i = 0; i < arr.Length; i++)
{
string s = arr[i];
tbArray.Text = s;
}