第十六周个人作业
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十六周个人作业相关的知识,希望对你有一定的参考价值。
一.计划
这个任务需要三天
二.开发
1.需求分析:作为一名观众我希望了解某一场比赛的比分以便了解赛况
2.生成设计文档:拆分用户故事
3.具体设计:合理的布局
4.具体代码编写
namespace app
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
textBox3.Enabled = false ;
button2.Enabled = false;
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text=="")
{
button2.Enabled = false;
}
}
private void button3_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
button2.Enabled = false;
}
private void button2_Click(object sender, EventArgs e)
{
textBox3.Text ="比赛结果为:" +textBox1.Text + ":" + textBox2.Text +"=25:24 "+textBox1.Text +"胜利"+textBox2 .Text +"惜败";
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text !=""&&textBox2.Text !="")
{
button2.Enabled = true ;
}
else
{
button2.Enabled = false;
}
以上是关于第十六周个人作业的主要内容,如果未能解决你的问题,请参考以下文章