zoukankan      html  css  js  c++  java
  • P​H​P​制​作​姓​名​、​学​号​。​爱​好​等​窗​口

     if (radioButton1.Checked == true)
                    textBox2.Text = 姓名: + textBox1.Text +    性别: + radioButton1.Text +     专业 + comboBox1.Text;
                else
                    textBox2.Text = 姓名: + textBox1.Text +    性别: + radioButton2.Text +     专业 + comboBox1.Text;
            }

            private void button2_Click(object sender, EventArgs e)
            {
                if (checkBox1.Checked == true)
                    textBox2.Text = textBox2.Text +    爱好: + checkBox1.Text +   ;
                if (checkBox2.Checked == true)
                    textBox2.Text = textBox2.Text + checkBox2.Text +   ;
            }

            private void groupBox2_Enter(object sender, EventArgs e)
            {

            }

  • 相关阅读:
    BUAA OO 2019 第三单元作业总结
    OpenJML入门
    BUAA OO 2019 第二单元作业总结
    BUAA OO 2019 第一单元作业总结
    Spring MVC原理
    Spring AOP原理
    Spring DI原理
    Spring IOC原理分析
    观察者模式
    装饰模式
  • 原文地址:https://www.cnblogs.com/php0368/p/3721792.html
Copyright © 2011-2022 走看看