C#源代码—在windows窗体中添加窗体控件,btnOK按钮的Click事件

在windows窗体中添加窗体控件
然后在源代码视图中编辑如下代码
using System;
using System.Windows.Forms;
namespace TestInterface
{
    public partial class TestInterface : Form //定义TestInterface类
    {
        interface IStudent    //声明接口IStudent
        {
            string Answer();
        }
        class Student : IStudent  //定义类Student,以实现接口IStudent所声明的Answer方法
        {
            public int no;
            public string name;
            public string Answer()
            {
                string result = "该学生信息如下:";
                result += "\n学号:" + no;
                result += "\n姓名:" + name;
                return result;
            }
        }
private void btnOk_Click(object sender, EventArgs e)
//定义btnOK按钮的Click事件
        {
            Student a = new Student();    
            //用Student类定义变量a,并初始化
            a.no = Convert.ToInt32(txtStuID.Text);
            a.name = txtName.Text;
            lblShow.Text = a.Answer();
        }
    }
}


你可能感兴趣的:(源代码,C#)