📜  c# winforms 输入 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:49.688000             🧑  作者: Mango

代码示例1
// Follow the video to set up the rest of the project
private void btnOK_Click(object sender, EventArgs e)
{
    MessageBox.Show($"Welcome {txtName.Text}, you're {txtAge.Text} years old.");
}