gui中的控制台写信

时间:2016-12-13 18:17:26

标签: c# user-interface

我正在将我的c#console.applicaition转换为windows表单应用程序(图形用户界面) 在这个功能出现之前,一切都很顺利:

public void view()
{
     List<string> finished = coursesF;
     foreach (string n in finished)
         Console.WriteLine(n);              
}

单击按钮时调用此函数, 但是由于写字线不起作用,我该怎么办呢? 例如,它打开包含变量(n)的消息框 或者它会打开一个新窗口。

1 个答案:

答案 0 :(得分:1)

您可以使用文本框或消息框。

//Textbox

List<string> finished = coursesF;
foreach (string n in finished) {
    textBox1.Text += n + "\r\n";
}

//MessageBox

List<string> finished = coursesF;
foreach (string n in finished) {
    System.Windows.Forms.MessageBox.Show(n, "Title Of Message Box");
}

如果您想知道文本框是什么,请在visual studio中转到视图 - &gt; ToolBox,将文本框拖放到表单

A picture of what it looks like to goto view -> toolbox

Picture of the toolbox