观众查询界面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了观众查询界面相关的知识,希望对你有一定的参考价值。

技术分享

namespace 排球计分程序
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}

private void Form3_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 button2_Click(object sender, EventArgs e)
{
textBox3.Text = "比赛结果为:" + textBox1.Text + ":" + textBox2.Text + "=25:24 " + textBox1.Text + "胜利" + textBox2.Text + "惜败";
}

private void button3_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
button2.Enabled = false;
}

private void textBox2_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text != "" && textBox2.Text != "")
{
button2.Enabled = true;
}
else
{
button2.Enabled = false;
}
}

private void textBox3_TextChanged(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
this.Close();
首页 s = new 首页();
s.Show();
}
}

 












































以上是关于观众查询界面的主要内容,如果未能解决你的问题,请参考以下文章

个人psp

本周个人作业

个人总结

区块链特辑——solidity语言基础

React Relay:复杂的突变脂肪查询

Solr索引库查询界面详解