首页 > 代码库 > 编程思想

编程思想

1.记住今天的生成准考证号的练习

public string ShowInfo
{
set
{
this.label1.Text = value;
}
}

public bool BtnShow
{
set
{
this.button1.Visible = value;
}
}

private void button1_Click(object sender, EventArgs e)
{
this.Close();
}

编程思想